mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-06 21:31:33 +02:00
9fc88068dc
for base files. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6870 3c298f89-4303-0410-b956-a3cf2f4a3e73
16 lines
190 B
Makefile
16 lines
190 B
Makefile
#
|
|
|
|
all: ubpar
|
|
|
|
crc32.c:
|
|
ln -s ../lib_generic/crc32.c ./
|
|
|
|
%.o: %.c
|
|
$(CC) -I ../include $(CFLAGS) $(EXTRA_FLAGS) -c -o $@ $^
|
|
|
|
ubpar: ubpar.o crc32.o
|
|
$(CC) -o $@ $^
|
|
|
|
clean:
|
|
rm -f *.o ubpar
|