mirror of
https://github.com/openwrt/openwrt.git
synced 2025-03-12 23:44:26 +00:00
14 lines
204 B
Makefile
14 lines
204 B
Makefile
|
PROG=w921v_fw_cutter
|
||
|
OBJS=w921v_fw_cutter.c LzmaDecode.c LzmaWrapper.c
|
||
|
|
||
|
all: $(PROG)
|
||
|
|
||
|
$(PROG): $(OBJS)
|
||
|
$(CC) $(CFLAGS) $(LDFLAGS) $^ -o $@
|
||
|
|
||
|
clean:
|
||
|
rm *.o $(PROG)
|
||
|
|
||
|
%.o: %.c
|
||
|
$(CC) $(CFLAGS) -c $^ -o $@
|