1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-13 10:26:00 +00:00
mpv/vidix/dhahelperwin/Makefile
diego a9d779578d Make windres binary name configurable, useful for cross-compiling.
patch by sheba, sheba469 yahoo com


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25534 b3059339-0415-0410-9bf9-f77b7e298cf2
2007-12-28 10:33:22 +00:00

42 lines
925 B
Makefile

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:
rm -f *.o *~ dhahelper.sys dhasetup.exe base.tmp temp.exp
distclean: clean
.PHONY: all clean distclean