Simplify commands with automatic variables.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24568 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2007-09-18 10:23:16 +00:00
parent 2a7e1da08f
commit 96db901f35
1 changed files with 10 additions and 13 deletions

View File

@ -3,38 +3,35 @@ include ../../config.mak
all: dhasetup.exe dhahelper.sys all: dhasetup.exe dhahelper.sys
dhasetup.exe: dhasetup.c dhasetup.exe: dhasetup.c
$(CC) -o dhasetup.exe dhasetup.c $(CC) -o $@ $<
dhahelper.o: dhahelper.c dhahelper.h dhahelper.o: dhahelper.c dhahelper.h
$(CC) -Wall -Os -c dhahelper.c -o dhahelper.o $(CC) -Wall -Os -c $< -o $@
dhahelper-rc.o: dhahelper.rc common.ver ntverp.h dhahelper-rc.o: dhahelper.rc common.ver ntverp.h
windres -I. dhahelper.rc $@ windres -I. $< $@
base.tmp: dhahelper.o dhahelper-rc.o base.tmp: dhahelper.o dhahelper-rc.o
$(CC) -Wl,--base-file,base.tmp \ $(CC) -Wl,--base-file,$@ \
-Wl,--entry,_DriverEntry@8 \ -Wl,--entry,_DriverEntry@8 \
-nostartfiles -nostdlib \ -nostartfiles -nostdlib \
-o junk.tmp \ -o junk.tmp $^ -lntoskrnl
dhahelper.o dhahelper-rc.o \
-lntoskrnl
-rm -f junk.tmp -rm -f junk.tmp
temp.exp: base.tmp temp.exp: base.tmp
dlltool --dllname dhahelper.sys --base-file base.tmp --output-exp temp.exp dlltool --dllname dhahelper.sys --base-file $< --output-exp $@
dhahelper.sys: dhahelper.o dhahelper-rc.o temp.exp dhahelper.sys: temp.exp dhahelper.o dhahelper-rc.o
$(CC) -Wl,--subsystem,native \ $(CC) -Wl,--subsystem,native \
-Wl,--image-base,0x10000 \ -Wl,--image-base,0x10000 \
-Wl,--file-alignment,0x1000 \ -Wl,--file-alignment,0x1000 \
-Wl,--section-alignment,0x1000 \ -Wl,--section-alignment,0x1000 \
-Wl,--entry,_DriverEntry@8 \ -Wl,--entry,_DriverEntry@8 \
-Wl,temp.exp \ -Wl,$< \
-mdll -nostartfiles -nostdlib \ -mdll -nostartfiles -nostdlib \
-o dhahelper.sys \ -o $@ dhahelper.o dhahelper-rc.o \
dhahelper.o dhahelper-rc.o \
-lntoskrnl -lntoskrnl
strip dhahelper.sys strip $@
clean: clean:
rm -f *.o *~ dhahelper.sys dhasetup.exe base.tmp temp.exp rm -f *.o *~ dhahelper.sys dhasetup.exe base.tmp temp.exp