Source code of Windows XP (NT5)
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.
|
|
# # Builds LKRdbg.dll using the NT Build Environment # # George V. Reilly, georgere, 2000/03/24 #
TARGETNAME=LKRdbg TARGETPATH=..\$(_OBJ_DIR) TARGETTYPE=DYNLINK TARGETLIBS=\ $(BASEDIR)\public\sdk\lib\*\kernel32.lib \
C_DEFINES=-DUSE_DEBUG_CRTS USE_CRTDLL=1
# WIN32_WINNT_VERSION=0x0403
INCLUDES=.;..\inc;..\src; \ $(BASEDIR)\public\sdk\inc; \ $(BASEDIR)\public\sdk\inc\crt; \
DLLENTRY=_DllMainCRTStartup
MSC_WARNING_LEVEL=/W3 /WX
LKR_CUST_EXTN= \ lkrcust.cpp \ wordhash.cpp \ minfan.cpp \ numset.cpp \ str-num.cpp \
SOURCES= \ main.cxx \ help.cxx \ lkrdbg.rc \ dbglkrh.cxx \ dbglocks.cxx \ $(LKR_CUST_EXTN)
!IF "$(NTNOPCH)" == "" PRECOMPILED_CXX=1 PRECOMPILED_INCLUDE=precomp.hxx PRECOMPILED_OBJ=precomp.obj PRECOMPILED_PCH=precomp.pch !ENDIF
|