diff options
author | Felix Fietkau <nbd@openwrt.org> | 2006-11-03 23:55:49 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2006-11-03 23:55:49 +0000 |
commit | 68334478aab160e73857497ec57779a318658cb8 (patch) | |
tree | de63c5dfddfa9851fbca2f26ab7a525257ef83e3 /package/nozomi/files | |
parent | b7bede71f60fc9e9308b5deaca083245955ed0c7 (diff) | |
download | upstream-68334478aab160e73857497ec57779a318658cb8.tar.gz upstream-68334478aab160e73857497ec57779a318658cb8.tar.bz2 upstream-68334478aab160e73857497ec57779a318658cb8.zip |
add nozomi driver
SVN-Revision: 5431
Diffstat (limited to 'package/nozomi/files')
-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) |