LDP/LDP/guide/docbook/lkmpg-2.6/lkmpg-examples/04-CharacterDeviceFiles/Makefile

13 lines
246 B
Makefile
Raw Normal View History

2005-05-27 17:04:12 +00:00
#
# This is a sort a recursive Makefile
# This Makefile is used to compile the module
#
2004-07-21 13:30:15 +00:00
obj-m += chardev.o
2005-05-27 17:04:12 +00:00
all:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
clean:
make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean