summaryrefslogtreecommitdiff
path: root/hello/Makefile
blob: d63aa3dc497b5ddc9080824248ee61ef7e1cbb38 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
obj-m += hello-1.o
obj-m += hello-2.o
obj-m += hello-3.o
obj-m += hello-4.o
obj-m += startstop.o
startstop-objs := start.o stop.o

all:
	make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules

clean:
	make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean