aboutsummaryrefslogtreecommitdiffstats
path: root/package/kernel/lantiq/ltq-vdsl-fw/src/Makefile
blob: 2d50aaf023a13a8958cd852ad684d58cfa8d153a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 $@