Windows NT 4.0 source code leak
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.
 
 
 
 
 
 

28 lines
732 B

# AFX_INTERNAL
#
# Builds necessary tools for running REGEN.MAK process
#
# Macros:
# PLATFORM must be set to desired host platform
# (usually set in the environment)
D=..\bin\$(PLATFORM)
all: create.dir $D\genord.exe $D\maptweak.exe
$D\genord.exe: genord.c
cl /MT /Fe$@ genord.c /link kernel32.lib
del genord.obj
$D\maptweak.exe: maptweak.cpp
cl /MT /Fe$@ maptweak.cpp /link nafxcw.lib libc.lib kernel32.lib user32.lib gdi32.lib shell32.lib comdlg32.lib advapi32.lib winspool.lib
del maptweak.obj
create.dir:
@-if not exist $D\*.* mkdir $D
clean:
if exist $D\genord.exe del $D\genord.exe
if exist $D\maptweak.exe del $D\maptweak.exe
# AFX_INTERNAL