LDP/LDP/guide/docbook/lkmpg-2.6/lkmpg-examples/02-HelloWorld/Makefile.2

9 lines
188 B
Groff
Raw Normal View History

2004-07-21 13:30:15 +00:00
obj-m += hello-1.o
obj-m += hello-2.o
2005-05-27 17:04:12 +00:00
all:
2019-03-09 18:05:01 +00:00
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) modules
2005-05-27 17:04:12 +00:00
clean:
2019-03-09 18:05:01 +00:00
make -C /lib/modules/$(shell uname -r)/build M=$(shell pwd) clean