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.
37 lines
651 B
37 lines
651 B
#*** Master make file
|
|
#
|
|
# Copyright <C> 1990, Microsoft Corporation
|
|
#
|
|
# Purpose:
|
|
#
|
|
# Revision History:
|
|
#
|
|
#************************************************************************
|
|
#
|
|
# Builds the following versions of sym.dll: (also are the targets)
|
|
#
|
|
#************************************************************************
|
|
|
|
CFLAGS = -nologo -Di386 -Lp -Zi -W3 -I$(DIR_NT) -I$(DIR_NT_CRT) -I$(DIR_NTSD) -AM -Gs -H64
|
|
|
|
|
|
alltargets: shd
|
|
|
|
#
|
|
# Main targets
|
|
#
|
|
|
|
clean:
|
|
del *.obj, *.map
|
|
|
|
veryclean:
|
|
del *.obj, *.map, *.exe
|
|
|
|
|
|
shd: shd.exe
|
|
|
|
shd.exe: shd.obj sh.obj
|
|
LINK shd.obj sh.obj /NOL /PM:VIO /CO,,, \
|
|
/nod:MLIBCE MLIBCEP;
|
|
CVPACK $*.exe
|
|
|