mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-02 08:05:20 +02:00
17c7b6c3fd
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@8653 3c298f89-4303-0410-b956-a3cf2f4a3e73
16 lines
240 B
Makefile
16 lines
240 B
Makefile
#
|
|
|
|
all: ubpar
|
|
|
|
crc32.c:
|
|
ln -s ../lib_generic/crc32.c ./
|
|
|
|
%.o: %.c
|
|
$(CC) -I ../include $(CFLAGS) $(EXTRA_FLAGS) -DLAN_IP=$(LAN_IP) -DLAN_SERVERIP=$(LAN_SERVERIP) -c -o $@ $^
|
|
|
|
ubpar: ubpar.o crc32.o
|
|
$(CC) -o $@ $^
|
|
|
|
clean:
|
|
rm -f *.o ubpar
|