summaryrefslogtreecommitdiffstats
path: root/vidix
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-30 19:39:00 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-30 19:39:00 +0000
commit5d87f6d9cabcd61ba2b8631aeb3608182d937976 (patch)
treebe289a5f85e806de04b7ebcbe1f3b74662804e3f /vidix
parentf3617303c1d4da10d923c883132447f84c2be45a (diff)
downloadmpv-5d87f6d9cabcd61ba2b8631aeb3608182d937976.tar.bz2
mpv-5d87f6d9cabcd61ba2b8631aeb3608182d937976.tar.xz
Merge vidix/dhahelper/Makefile into top-level Makefile.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26934 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix')
-rw-r--r--vidix/dhahelper/Makefile21
1 files changed, 0 insertions, 21 deletions
diff --git a/vidix/dhahelper/Makefile b/vidix/dhahelper/Makefile
deleted file mode 100644
index 4b810ec500..0000000000
--- a/vidix/dhahelper/Makefile
+++ /dev/null
@@ -1,21 +0,0 @@
-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