74 lines
1.3 KiB
Plaintext
74 lines
1.3 KiB
Plaintext
!IF 0
|
|
|
|
Copyright (c) 1989 Microsoft Corporation
|
|
|
|
Module Name:
|
|
|
|
sources.
|
|
|
|
Abstract:
|
|
|
|
This file specifies the target component being built and the list of
|
|
sources files needed to build that component. Also specifies optional
|
|
compiler switches and libraries that are unique for the component being
|
|
built.
|
|
|
|
!ENDIF
|
|
|
|
MAJORCOMP=debugger
|
|
MINORCOMP=sapi
|
|
|
|
TARGETNAME=shcv
|
|
TARGETPATH=obj
|
|
TARGETTYPE=DYNLINK
|
|
|
|
DLLDEF=sapi.def
|
|
|
|
SOURCES= \
|
|
hash.cpp \
|
|
loadomf.cpp \
|
|
ph.cpp \
|
|
sh.cpp \
|
|
shinit.cpp \
|
|
shsymbol.cpp \
|
|
shsymlb0.cpp \
|
|
shsymlb1.cpp \
|
|
sl.cpp \
|
|
stab.cpp \
|
|
strings.cpp \
|
|
th.cpp \
|
|
sapi.rc
|
|
|
|
UMTYPE=windows
|
|
|
|
INCLUDES=.;inc;..\..\langapi\include;..\..\langapi\debugger
|
|
|
|
TARGETLIBS= \
|
|
..\..\pdb\*dll\mspdb.lib \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib
|
|
|
|
PRECOMPILED_INCLUDE=shinc.hpp
|
|
PRECOMPILED_PCH=precomp.pch
|
|
PRECOMPILED_OBJ=precomp.obj
|
|
|
|
DLLENTRY = _DllMainCRTStartup
|
|
|
|
MSC_WARNING_LEVEL=/WX /W3
|
|
|
|
C_DEFINES = $(C_DEFINES) -DWIN32 -DTARGET32 -DHOST32 -D_CROSS_PLATFORM_
|
|
|
|
MIPS_FLAGS = -DHOST_MIPS
|
|
386_FLAGS = -DHOST_i386
|
|
ALPHA_FLAGS= -DHOST_ALPHA
|
|
PPC_FLAGS = -DHOST_PPC
|
|
|
|
USE_CRTDLL=1
|
|
|
|
!if $(FREEBUILD)
|
|
C_DEFINES = $(C_DEFINES) -DNDEBUG
|
|
!else
|
|
C_DEFINES = $(C_DEFINES) -DDEBUGVER
|
|
!endif
|