mirror of https://github.com/lianthony/NT4.0
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.
106 lines
2.3 KiB
106 lines
2.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.
|
|
|
|
!ENDIF
|
|
|
|
#
|
|
# The TARGETNAME variable is defined by the developer. It is the name of
|
|
# the target (component) that is being built by this makefile. It
|
|
# should NOT include any path or file extension information.
|
|
#
|
|
|
|
|
|
RPCLIB=\nt\public\sdk\lib
|
|
|
|
|
|
TARGETNAME=locator
|
|
|
|
#
|
|
# The TARGETPATH and TARGETTYPE varialbes are defined by the developer.
|
|
# The first specifies where the target is to be build. The second specifies
|
|
# the type of target (either PROGRAM, DYNLINK or LIBRARY)
|
|
#
|
|
|
|
TARGETPATH=..\lib
|
|
TARGETTYPE=PROGRAM
|
|
|
|
#
|
|
# The INCLUDES variable specifies any include paths that are specific to
|
|
# this source directory. Separate multiple directory paths with single
|
|
# semicolons. Relative path specifications are okay.
|
|
#
|
|
|
|
INCLUDES=.\;nt;..\;..\..\runtime\mtrt
|
|
|
|
#
|
|
# The SOURCES variable is defined by the developer. It is a list of all the
|
|
# source files for this component. Each source file should be on a separate
|
|
# line using the line continuation character. This will minimize merge
|
|
# conflicts if two developers adding source files to the same component.
|
|
#
|
|
|
|
SOURCES= \
|
|
locator.cxx \
|
|
system.cxx \
|
|
protocol.cxx \
|
|
util.cxx \
|
|
cache.cxx \
|
|
fileio.cxx \
|
|
dict.cxx \
|
|
sem.cxx \
|
|
mailslot.cxx \
|
|
switch.cxx \
|
|
binding.cxx \
|
|
entry.cxx \
|
|
nsisvr_s.c \
|
|
nsiclt_s.c \
|
|
nsimgm_s.c \
|
|
locloc.cxx \
|
|
locloc_s.c \
|
|
misc.c \
|
|
locloc_c.c \
|
|
loccl.cxx \
|
|
locator.rc
|
|
|
|
|
|
!IF "$(NTDEBUG)" != "cvp"
|
|
CXXCPP_OPTIONS=-DDBG=0
|
|
!else
|
|
CXXCPP_OPTIONS=-DDBG=1
|
|
DEBUG_DEFINES=-DLDEBUG
|
|
!endif
|
|
|
|
C_DEFINES=$(DEBUG_DEFINES) -DNTENV -D_far= \
|
|
-DDICT_NOPREV -DRUNTIME
|
|
|
|
386_WARNING_LEVEL=/W3
|
|
|
|
BLDCRT=1
|
|
|
|
LINKLIBS=$(RPCLIB)\*\Rpcrt4.lib \
|
|
$(RPCLIB)\*\RpcNdr.lib \
|
|
$(_NTDRIVE)\nt\public\sdk\lib\*\netapi32.lib \
|
|
$(_NTDRIVE)\nt\public\sdk\lib\*\advapi32.lib \
|
|
$(_NTDRIVE)\nt\public\sdk\lib\*\ntdll.lib
|
|
|
|
UMTYPE=console
|
|
|
|
|
|
UMOBJS= $(RPCLIB)\*\rpcns4.lib \
|
|
obj\*\tclient.obj
|
|
|
|
UMTEST=stest
|
|
|
|
NTTARGETFILE0=TESTSTUFF
|