mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 08:51:13 +00:00
9b4fc4cae9
bcm4908img is a tool managing BCM4908 platform images. It's used for creating them as well as checking, modifying and extracting data from. It's required by both: host (for building firmware images) and target (for sysupgrade purposes). Make it a host/target package. Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
8 lines
97 B
Makefile
8 lines
97 B
Makefile
all: bcm4908img
|
|
|
|
bcm4908img:
|
|
$(CC) $(CFLAGS) -o $@ bcm4908img.c -Wall
|
|
|
|
clean:
|
|
rm -f bcm4908img
|