You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openwrt/package/kernel/lantiq/ltq-vdsl-fw/src/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 $@