CD exfat support for Tomato. https://github.com/dorimanx/exfat-nofuse.
[tomato.git] / release / src / btools / Makefile
blob06ec47e35fcd9786de6cd5e88d40f39d2c2d501e
2 CC = gcc
3 CFLAGS = -O3 -Wall
5 all: fpkg
7 fpkg: fpkg.c
8 $(CC) $(CFLAGS) -o $@ $^
10 dcfg: dcfg.c
11 $(CC) $(CFLAGS) -o $@ $^
13 clean:
14 rm -f *.o fpkg dcfg
16 %.o: %.c
17 $(CC) $(CFLAGS) -c $<