mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
553 B
21 lines
553 B
CFLAGS = -c -AM -Lr -Gsw -W3 -Zpie -Od
|
|
|
|
|
|
all: uaetrap.dll uaetrap.lib
|
|
|
|
uaetrap.obj: uaetrap.c
|
|
cl $(CFLAGS) uaetrap.c
|
|
|
|
libentry.obj: libentry.asm
|
|
masm /Zi /DmemM=1 /DDEBUG libentry;
|
|
|
|
faultasm.obj: faultasm.asm
|
|
masm /Zi /DmemM=1 /DDEBUG faultasm;
|
|
|
|
|
|
uaetrap.dll: uaetrap.obj libentry.obj faultasm.obj
|
|
link /NOD /NOE /CO uaetrap libentry faultasm, uaetrap.dll/align:16,nul,mdllcew libw toolhelp, uaetrap.def
|
|
\tools\binr\rc uaetrap.dll
|
|
|
|
uaetrap.lib: uaetrap.dll
|
|
implib uaetrap.lib uaetrap.def
|