69 lines
1.3 KiB
Plaintext
69 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.
|
||
|
|
||
|
|
||
|
Author:
|
||
|
|
||
|
|
||
|
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
LSERVER_ROOT =..\..
|
||
|
|
||
|
INCLUDES = $(INCLUDES);..
|
||
|
|
||
|
!include $(LSERVER_ROOT)\lserver.mk
|
||
|
|
||
|
MINORCOMP=upgdb
|
||
|
MSC_WARNING_LEVEL=/W3
|
||
|
|
||
|
INCPATH0=$(INCLUDE)
|
||
|
|
||
|
TARGETNAME=$(MINORCOMP)
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=PROGRAM
|
||
|
|
||
|
UMTYPE=console
|
||
|
|
||
|
SOURCES= \
|
||
|
test.cpp \
|
||
|
..\dbsetup.c \
|
||
|
..\jblue.cpp \
|
||
|
..\jred.cpp \
|
||
|
..\misc.cpp \
|
||
|
..\odbc.cpp \
|
||
|
..\upg.cpp
|
||
|
|
||
|
UMLIBS=\
|
||
|
$(COMMON_LIB) \
|
||
|
$(LSERVER_LIB_PATH)\$(O)\TlsDb.lib \
|
||
|
$(LSERVER_LIB_PATH)\$(O)\JetBlue.lib \
|
||
|
$(SDK_LIB_PATH)\odbc32.lib \
|
||
|
$(SDK_LIB_PATH)\esent.lib \
|
||
|
$(SDK_LIB_PATH)\crypt32.lib \
|
||
|
$(SDK_LIB_PATH)\ws2_32.lib \
|
||
|
$(SDK_LIB_PATH)\ole32.lib \
|
||
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
||
|
$(SDK_LIB_PATH)\uuid.lib \
|
||
|
$(SDK_LIB_PATH)\shell32.lib \
|
||
|
$(SDK_LIB_PATH)\gdi32.lib \
|
||
|
$(SDK_LIB_PATH)\netapi32.lib \
|
||
|
$(SDK_LIB_PATH)\rpcrt4.lib \
|
||
|
$(SDK_LIB_PATH)\rpcns4.lib \
|
||
|
$(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\msvcprt.lib
|
||
|
|