1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2024-09-25 19:30:22 +03:00
openwrt-xburst/target/linux/at91-2.6/image/u-boot/ubclient/Makefile
hcg 49d809d764 Added config parameters for u-boot client IP address as well as TFTP
server IP address.


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@7632 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-06-14 13:46:24 +00:00

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