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.
15 lines
377 B
15 lines
377 B
CFLAGS = -c -AM -Lr -Gsw -W3 -Zpie -Od
|
|
|
|
|
|
all: uaetest.exe
|
|
|
|
uaetest.obj: uaetest.c
|
|
cl $(CFLAGS) uaetest.c
|
|
|
|
faultasm.obj: faultasm.asm
|
|
masm /Zi /DmemM=1 /DDEBUG faultasm;
|
|
|
|
|
|
uaetest.exe: uaetest.obj faultasm.obj
|
|
link /NOD /NOE /CO uaetest faultasm, uaetest.exe/align:16,nul,mlibcew libw toolhelp, uaetest.def
|
|
\tools\binr\rc uaetest.exe
|