diff options
author | hcg <hcg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-05 13:23:15 +0000 |
---|---|---|
committer | hcg <hcg@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2007-04-05 13:23:15 +0000 |
commit | 9fc88068dc1f737aab1ba573a4f5b31c5cdf1a3c (patch) | |
tree | c1944c0cde5a12e23ffb88141e0537f086ffa85a /target/linux/at91-2.6/image/u-boot/ubclient/Makefile | |
parent | 92db2de729afe1fab41e5cd441b1db926bb8f07d (diff) |
Added module to generate u-boot config file. Added platform overrides
for base files.
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6870 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/at91-2.6/image/u-boot/ubclient/Makefile')
-rw-r--r-- | target/linux/at91-2.6/image/u-boot/ubclient/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/target/linux/at91-2.6/image/u-boot/ubclient/Makefile b/target/linux/at91-2.6/image/u-boot/ubclient/Makefile new file mode 100644 index 000000000..c79260e45 --- /dev/null +++ b/target/linux/at91-2.6/image/u-boot/ubclient/Makefile @@ -0,0 +1,15 @@ +# + +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 |