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