summaryrefslogtreecommitdiffstats
path: root/vidix/dhahelperwin/Makefile
blob: d6f8f944085d2c017cf07e2875c78718f71f8517 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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