summaryrefslogtreecommitdiffstats
path: root/vidix/dhahelper/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-30 19:17:20 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-30 19:17:20 +0000
commitf3617303c1d4da10d923c883132447f84c2be45a (patch)
tree98732e957b9439373c2ce2cd177b30caa548c06f /vidix/dhahelper/Makefile
parent508a697e942e7ebdcc8a7858481cc80c5d7d045c (diff)
downloadmpv-f3617303c1d4da10d923c883132447f84c2be45a.tar.bz2
mpv-f3617303c1d4da10d923c883132447f84c2be45a.tar.xz
Rename kernelhelper to dhahelper, that name is more fitting.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26933 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix/dhahelper/Makefile')
-rw-r--r--vidix/dhahelper/Makefile21
1 files changed, 21 insertions, 0 deletions
diff --git a/vidix/dhahelper/Makefile b/vidix/dhahelper/Makefile
new file mode 100644
index 0000000000..4b810ec500
--- /dev/null
+++ b/vidix/dhahelper/Makefile
@@ -0,0 +1,21 @@
+KERNEL_INC = /usr/src/linux/include
+CFLAGS = -O2 -D__KERNEL__ -DMODULE -I$(KERNEL_INC) \
+ -include $(KERNEL_INC)/linux/modversions.h
+VERSION = $(shell grep RELEASE $(KERNEL_INC)/linux/version.h | cut -d'"' -f2)
+MDIR = /lib/modules/$(VERSION)/misc
+
+all: dhahelper.o test
+
+dhahelper.o: dhahelper.c dhahelper.h
+
+install: dhahelper.o
+ -mkdir -p $(MDIR)
+ install -m 644 dhahelper.o $(MDIR)/dhahelper.o
+ depmod -a
+
+dep depend:
+
+clean distclean:
+ rm -f *.o *~ test
+
+.PHONY: all install dep depend *clean