49 lines
920 B
Plaintext
49 lines
920 B
Plaintext
|
!IF 0
|
||
|
|
||
|
Copyright (C) Microsoft Corporation, 1989 - 1999
|
||
|
|
||
|
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:
|
||
|
Created 8\10\2000 by Hitesh Raigandhi (hiteshr)
|
||
|
from template created 12-Apr-1990 by Steve Wood (stevewo)
|
||
|
|
||
|
NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
TARGETNAME= parser
|
||
|
TARGETTYPE= LIBRARY
|
||
|
TARGETPATH= obj
|
||
|
|
||
|
USE_MSVCRT=1
|
||
|
|
||
|
|
||
|
C_DEFINES = $(C_DEFINES) -DSTRICT -DUNICODE -D_UNICODE
|
||
|
|
||
|
TARGETLIBS=\
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\libc.lib \
|
||
|
|
||
|
|
||
|
SOURCES= varg.cpp \
|
||
|
util.cpp \
|
||
|
strings.cpp \
|
||
|
|
||
|
PRECOMPILED_CXX=1
|
||
|
PRECOMPILED_INCLUDE=pch.h
|
||
|
|
||
|
|
||
|
|