41 lines
688 B
Plaintext
41 lines
688 B
Plaintext
!IF 0
|
|
|
|
Copyright (c) 1997-2000 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.
|
|
|
|
|
|
Author:
|
|
|
|
Melur Raghuraman (mraghu) 05-Mar-2000
|
|
|
|
!ENDIF
|
|
|
|
TARGETNAME=tracectr
|
|
TARGETPATH=obj
|
|
TARGETTYPE=LIBRARY
|
|
|
|
INCLUDES=$(INCLUDES); \
|
|
$(BASE_INC_PATH);
|
|
|
|
#MSC_WARNING_LEVEL=/W4
|
|
|
|
SOURCES= main.c \
|
|
process.c \
|
|
callbacks.cpp \
|
|
api.c \
|
|
report.c \
|
|
mergetl.c
|
|
|
|
C_DEFINES=-DWIN32 -DUNICODE -D_UNICODE
|
|
|