blob: e242da4feb78b0c3f55c2869f462a8319fa2cc2c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#############################################################################
#
# Makefile for building the robostix module
#
#############################################################################
obj-m = robostix.o
PWD = $(shell pwd)
KBUILD_FLAGS = -C $(KERNEL_PATH) M=$(PWD) KERNELRELEASE=$(KERNELRELEASE)
default: modules
modules:
$(MAKE) $(KBUILD_FLAGS) modules
clean:
rm -rf *.o *~ *.ko *.mod.c
|