summaryrefslogtreecommitdiffstats
path: root/Makefile
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 /Makefile
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 'Makefile')
-rw-r--r--Makefile13
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e0234bb46c..8ac4c13493 100644
--- a/Makefile
+++ b/Makefile
@@ -989,6 +989,19 @@ install-drivers: drivers
driversclean:
rm -f drivers/*.o drivers/*~ drivers/mga_vid_test drivers/tdfx_vid_test
+dhahelper: vidix/dhahelper/dhahelper.o vidix/dhahelper/test
+
+vidix/dhahelper/dhahelper.o vidix/dhahelper/test: CFLAGS = $(KERNEL_CFLAGS)
+vidix/dhahelper/dhahelper.o: vidix/dhahelper/dhahelper.c vidix/dhahelper/dhahelper.h
+
+install-dhahelper: vidix/dhahelper/dhahelper.o
+ -mkdir -p $(MODULES_DIR)
+ install -m 644 $< $(MODULES_DIR)
+ depmod -a
+
+dhahelperclean:
+ rm -f vidix/dhahelper/*.o vidix/dhahelper/*~ vidix/dhahelper/test
+
-include $(DEPS)