summaryrefslogtreecommitdiffstats
path: root/libdha
diff options
context:
space:
mode:
Diffstat (limited to 'libdha')
-rw-r--r--libdha/kernelhelper/Makefile26
1 files changed, 26 insertions, 0 deletions
diff --git a/libdha/kernelhelper/Makefile b/libdha/kernelhelper/Makefile
new file mode 100644
index 0000000000..dc0535f362
--- /dev/null
+++ b/libdha/kernelhelper/Makefile
@@ -0,0 +1,26 @@
+KERNEL_INCLUDES = /usr/src/linux/include
+INCLUDES = -I$(KERNEL_INCLUDES)
+CFLAGS = -g -O2 -Wall -D__KERNEL__ -DMODULE -include $(KERNEL_INCLUDES)/linux/modversions.h
+VERSION = $(shell grep UTS_RELEASE $(KERNEL_INCLUDES)/linux/version.h | cut -d '"' -f2)
+MDIR = /lib/modules/$(VERSION)/misc
+
+all: dhahelper.o test
+
+dhahelper.o: dhahelper.c dhahelper.h
+ $(CC) $(CFLAGS) $(INCLUDES) -c $(basename $@).c
+
+test: test.c
+ $(CC) -g -O -Wall $(INCLUDES) -o $@ $@.c
+
+install: dhahelper.o
+ if test ! -d $(MDIR) ; then mkdir -p $(MDIR) ; fi
+ install -m 644 dhahelper.o $(MDIR)/dhahelper.o
+ depmod -a
+
+dep:
+
+clean:
+ rm -f *.o *~
+
+distclean: clean
+ rm -f test