mirror of https://github.com/tongzx/nt5src
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.
73 lines
1.3 KiB
73 lines
1.3 KiB
!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.
|
|
|
|
|
|
Author:
|
|
|
|
Steve Wood (stevewo) 12-Apr-1990
|
|
|
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
|
|
|
!ENDIF
|
|
|
|
TERMSRV_ROOT = ..\..\..
|
|
TSCOMMON_ROOT = ..\..
|
|
|
|
!include $(TERMSRV_ROOT)\common\wincecom.inc
|
|
!include $(TERMSRV_ROOT)\common\newcommon.inc
|
|
|
|
# common.inc defines C_DEFINES, but WinCE uses CDEFINES
|
|
CDEFINES = $(CDEFINES) $(C_DEFINES) -DUNICODE -D_UNICODE -DSTATICONLY
|
|
CDEFINES=$(CDEFINES) $(CLIENT_EXE_CDEFS)
|
|
|
|
MAJORCOMP=TShrClnt
|
|
MINORCOMP=trc
|
|
|
|
TARGETNAME=tsctrcu
|
|
TARGETPATH=$(TERMSRV_ROOT)\LIB\WINCE\$(_CPUINDPATH)
|
|
TARGETTYPE=LIBRARY
|
|
RELEASETYPE=CUSTOM
|
|
|
|
INCLUDES= \
|
|
$(INCLUDES); \
|
|
$(TERMSRV_ROOT)\wince\inc
|
|
|
|
#
|
|
# List of sources
|
|
#
|
|
|
|
CLIENT_SOURCES_RC = \
|
|
..\wtrc.rc
|
|
|
|
CLIENT_SOURCES_COMMON = \
|
|
..\atrcapi.c \
|
|
..\atrcdata.c \
|
|
..\atrcint.c \
|
|
..\wtrcapi.c
|
|
|
|
CLIENT_SOURCES_LAST = \
|
|
..\wtrcint.c
|
|
|
|
SOURCES = \
|
|
$(CLIENT_SOURCES_COMMON) \
|
|
$(CLIENT_SOURCES_LAST)
|
|
|
|
#
|
|
# Precompiled specs
|
|
#
|
|
|
|
PRECOMPILED_INCLUDE =
|
|
PRECOMPILED_PCH =
|
|
|