diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-11-03 23:55:49 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2006-11-03 23:55:49 +0000 |
commit | 106223e27e44d85b28c5a24cab8bddd43a3dd83c (patch) | |
tree | b323c9ea2d0f343c3d02b8bbf7d118ae22d58e04 /package/nozomi/files/Makefile | |
parent | e94772e7a30ee6d27ec99a9bc6b65161d6e32fb3 (diff) |
add nozomi driver
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@5431 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'package/nozomi/files/Makefile')
-rw-r--r-- | package/nozomi/files/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/package/nozomi/files/Makefile b/package/nozomi/files/Makefile new file mode 100644 index 0000000000..85ea948f6f --- /dev/null +++ b/package/nozomi/files/Makefile @@ -0,0 +1,15 @@ +# $Id$ + +O_TARGET := noz.o + +export-objs := nozomi.o kfifo.o + +list-multi := noz.o +noz-objs := nozomi.o kfifo.o + +obj-m := noz.o + +include $(TOPDIR)/Rules.make + +noz.o: $(noz-objs) + $(LD) -r -o $@ $(noz-objs) |