source:
ksyslog/trunk/Makefile
@
232
Revision 232, 415 bytes checked in by atzm, 11 years ago (diff) |
---|
Rev | Line | |
---|---|---|
[232] | 1 | # ksyslog: In-kernel syslog receiver |
2 | # Copyright(C) 2013 Atzm WATANABE All rights reserved | |
3 | # Distributed under the GPL | |
4 | ||
5 | obj-m := ksyslog.o | |
6 | KDIR := /lib/modules/$(shell uname -r)/build | |
7 | PWD := $(shell pwd) | |
8 | ||
9 | modules: | |
10 | $(MAKE) -C $(KDIR) M=$(PWD) modules | |
11 | ||
12 | modules_install: | |
13 | $(MAKE) -C $(KDIR) M=$(PWD) modules_install | |
14 | ||
15 | clean: | |
16 | rm -rf .tmp_versions Module.symvers modules.order *.o *.ko *.ko.unsigned .*.cmd *.mod.c |
Note: See TracBrowser
for help on using the repository browser.