summaryrefslogtreecommitdiffstats
path: root/Makefile
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 /Makefile
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 'Makefile')
-rw-r--r--Makefile32
1 files changed, 31 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 8ac4c13493..ace763d472 100644
--- a/Makefile
+++ b/Makefile
@@ -1002,9 +1002,39 @@ install-dhahelper: vidix/dhahelper/dhahelper.o
dhahelperclean:
rm -f vidix/dhahelper/*.o vidix/dhahelper/*~ vidix/dhahelper/test
+dhahelperwin: vidix/dhahelperwin/dhasetup.exe vidix/dhahelperwin/dhahelper.sys
+
+vidix/dhahelperwin/dhasetup.exe: vidix/dhahelperwin/dhasetup.c
+ $(CC) -o $@ $<
+
+vidix/dhahelperwin/dhahelper.o: vidix/dhahelperwin/dhahelper.c vidix/dhahelperwin/dhahelper.h
+ $(CC) -Wall -Os -c $< -o $@
+
+vidix/dhahelperwin/dhahelper-rc.o: vidix/dhahelperwin/dhahelper.rc vidix/dhahelperwin/common.ver vidix/dhahelperwin/ntverp.h
+ $(WINDRES) -I. $< $@
+
+vidix/dhahelperwin/base.tmp: vidix/dhahelperwin/dhahelper.o vidix/dhahelperwin/dhahelper-rc.o
+ $(CC) -Wl,--base-file,$@ -Wl,--entry,_DriverEntry@8 -nostartfiles \
+ -nostdlib -o vidix/dhahelperwin/junk.tmp $^ -lntoskrnl
+ -rm -f vidix/dhahelperwin/junk.tmp
+
+vidix/dhahelperwin/temp.exp: vidix/dhahelperwin/base.tmp
+ dlltool --dllname vidix/dhahelperwin/dhahelper.sys --base-file $< --output-exp $@
+
+vidix/dhahelperwin/dhahelper.sys: vidix/dhahelperwin/temp.exp vidix/dhahelperwin/dhahelper.o vidix/dhahelperwin/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 $@ vidix/dhahelperwin/dhahelper.o \
+ vidix/dhahelperwin/dhahelper-rc.o -lntoskrnl
+ strip $@
+
+dhahelperwinclean:
+ rm -f $(addprefix vidix/dhahelperwin/,*.o *~ dhahelper.sys dhasetup.exe base.tmp temp.exp)
+
-include $(DEPS)
-.PHONY: all doxygen *install* recurse *tools drivers
+.PHONY: all doxygen *install* recurse *tools drivers dhahelper*
.PHONY: checkheaders *clean dep depend tests