51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
|
!IF 0
|
||
|
|
||
|
Copyright (c) 1989-1996 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.
|
||
|
|
||
|
|
||
|
History:
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
TARGETNAME = tracer
|
||
|
TARGETPATH = obj
|
||
|
TARGETTYPE = PROGRAM
|
||
|
|
||
|
USE_MSVCRT = 1
|
||
|
INCLUDES = ..\inc;..\wintrace
|
||
|
|
||
|
SOURCES = tracer.c \
|
||
|
server.c \
|
||
|
wtrace_s.c \
|
||
|
trtrace.c \
|
||
|
trdebug.c \
|
||
|
tracer.rc
|
||
|
|
||
|
C_DEFINES = -DWIN32 -DNT
|
||
|
|
||
|
UMTYPE = windows
|
||
|
UMENTRY = winmain
|
||
|
UMLIBS = $(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(SDK_LIB_PATH)\shell32.lib \
|
||
|
$(SDK_LIB_PATH)\comdlg32.lib \
|
||
|
$(SDK_LIB_PATH)\rpcrt4.lib \
|
||
|
$(SHELL_LIB_PATH)\comctlp.lib
|
||
|
|
||
|
!IF 0
|
||
|
PRECOMPILED_INCLUDE = pch.h
|
||
|
PRECOMPILED_PCH = pch.pch
|
||
|
PRECOMPILED_OBJ = pch.obj
|
||
|
!ENDIF
|