blob: 85ea948f6f0043e4792a16c8369b6d40bd7f8f57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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)
|