summaryrefslogtreecommitdiffstats
path: root/vidix
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-30 20:09:31 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2008-05-30 20:09:31 +0000
commit13d53795d9ff5b9bb200717239a638212c97d08f (patch)
tree7d840a735c44365732c41b94dfbb96bcfc3762e4 /vidix
parent5d87f6d9cabcd61ba2b8631aeb3608182d937976 (diff)
downloadmpv-13d53795d9ff5b9bb200717239a638212c97d08f.tar.bz2
mpv-13d53795d9ff5b9bb200717239a638212c97d08f.tar.xz
Merge vidix/dhahelperwin/Makefile into top-level Makefile.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26935 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'vidix')
-rw-r--r--vidix/dhahelperwin/Makefile39
1 files changed, 0 insertions, 39 deletions
diff --git a/vidix/dhahelperwin/Makefile b/vidix/dhahelperwin/Makefile
deleted file mode 100644
index a35d5b66e5..0000000000
--- a/vidix/dhahelperwin/Makefile
+++ /dev/null
@@ -1,39 +0,0 @@
-include ../../config.mak
-
-all: dhasetup.exe dhahelper.sys
-
-dhasetup.exe: dhasetup.c
- $(CC) -o $@ $<
-
-dhahelper.o: dhahelper.c dhahelper.h
- $(CC) -Wall -Os -c $< -o $@
-
-dhahelper-rc.o: dhahelper.rc common.ver ntverp.h
- $(WINDRES) -I. $< $@
-
-base.tmp: dhahelper.o dhahelper-rc.o
- $(CC) -Wl,--base-file,$@ \
- -Wl,--entry,_DriverEntry@8 \
- -nostartfiles -nostdlib \
- -o junk.tmp $^ -lntoskrnl
- -rm -f junk.tmp
-
-temp.exp: base.tmp
- dlltool --dllname dhahelper.sys --base-file $< --output-exp $@
-
-dhahelper.sys: temp.exp dhahelper.o dhahelper-rc.o
- $(CC) -Wl,--subsystem,native \
- -Wl,--image-base,0x10000 \
- -Wl,--file-alignment,0x1000 \
- -Wl,--section-alignment,0x1000 \
- -Wl,--entry,_DriverEntry@8 \
- -Wl,$< \
- -mdll -nostartfiles -nostdlib \
- -o $@ dhahelper.o dhahelper-rc.o \
- -lntoskrnl
- strip $@
-
-clean distclean:
- rm -f *.o *~ dhahelper.sys dhasetup.exe base.tmp temp.exp
-
-.PHONY: all clean distclean