khello/Makefile
author Markus Bröker <mbroeker@largo.dyndns.tv>
Tue, 09 Jun 2009 12:42:30 +0200
changeset 98 0e8eddac99cb
parent 50 a38f102556e5
permissions -rw-r--r--
Install Target added The simple module can be autoinstalled into the proper section committer: Markus Bröker <mbroeker@largo.homelinux.org>
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
50
a38f102556e5 khello: a nice kernel module
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff changeset
     1
obj-m += khello.o
a38f102556e5 khello: a nice kernel module
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff changeset
     2
a38f102556e5 khello: a nice kernel module
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff changeset
     3
all:
a38f102556e5 khello: a nice kernel module
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff changeset
     4
	make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules
a38f102556e5 khello: a nice kernel module
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff changeset
     5
a38f102556e5 khello: a nice kernel module
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff changeset
     6
clean:
a38f102556e5 khello: a nice kernel module
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff changeset
     7
	make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean
a38f102556e5 khello: a nice kernel module
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff changeset
     8
98
0e8eddac99cb Install Target added
Markus Bröker <mbroeker@largo.dyndns.tv>
parents: 50
diff changeset
     9
install:
0e8eddac99cb Install Target added
Markus Bröker <mbroeker@largo.dyndns.tv>
parents: 50
diff changeset
    10
	cp khello.ko /lib/modules/$(shell uname -r)/misc/;
0e8eddac99cb Install Target added
Markus Bröker <mbroeker@largo.dyndns.tv>
parents: 50
diff changeset
    11
	depmod -a
0e8eddac99cb Install Target added
Markus Bröker <mbroeker@largo.dyndns.tv>
parents: 50
diff changeset
    12
50
a38f102556e5 khello: a nice kernel module
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff changeset
    13
distclean: clean
a38f102556e5 khello: a nice kernel module
Markus Bröker <mbroeker@largo.dyndns.tv>
parents:
diff changeset
    14
	rm -f modules.order