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.
137 lines
3.2 KiB
137 lines
3.2 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-1989
|
|
|
|
|
|
Revision History:
|
|
|
|
!ENDIF
|
|
|
|
#
|
|
# the KernelRPC tree is where to get includes from
|
|
# if defined, it should be specified as an absolute path
|
|
#
|
|
|
|
!ifndef MIDL_KERNEL_RPC
|
|
MIDL_KERNEL_RPC=..
|
|
!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.
|
|
#
|
|
|
|
TARGETNAME=rpcndr20
|
|
|
|
#
|
|
# 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=$(BASEDIR)\public\sdk\lib
|
|
TARGETTYPE=LIBRARY
|
|
386_STDCALL=1
|
|
|
|
MSC_WARNING_LEVEL=/WX
|
|
|
|
#
|
|
# 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=.;..\midl20\include;$(MIDL_KERNEL_RPC)\runtime\mtrt;..\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= \
|
|
auxilary.c \
|
|
bufsize.c \
|
|
cltcall.c \
|
|
cvtf.c \
|
|
cvtg.c \
|
|
cvtglo.c \
|
|
endian.c \
|
|
factory.c \
|
|
free.c \
|
|
fullptr.c \
|
|
global.c \
|
|
hndl.c \
|
|
iid.c \
|
|
memsize.c \
|
|
misc.c \
|
|
mrshl.c \
|
|
mrshlp.c \
|
|
pickle.cxx \
|
|
pipes.cxx \
|
|
proxy.c \
|
|
registry.c \
|
|
rpcssm.cxx \
|
|
sh.c \
|
|
srvcall.c \
|
|
srvout.c \
|
|
stblsclt.c \
|
|
stream.cxx \
|
|
stub.c \
|
|
tiutil.cxx \
|
|
typeinfo.cxx \
|
|
unmrshl.c \
|
|
unmrshlp.c
|
|
|
|
!ifdef DOSWIN32RPC
|
|
RPCENV=-DDOSWIN32RPC -DWIN32RPC
|
|
!else
|
|
RPCENV=-DNTENV
|
|
!endif
|
|
|
|
#C_DEFINES=-DDEBUGRPC
|
|
C_DEFINES=$(RPCENV)
|
|
|
|
|
|
#LINKLIBS=$(BASEDIR)\public\sdk\lib\*\newndr.lib
|
|
#LINKLIBS=..\lib\*\newndr.lib \
|
|
# $(BASEDIR)\public\sdk\lib\*\rpcrt4.lib \
|
|
# $(BASEDIR)\public\sdk\lib\*\rpcns4.lib
|
|
|
|
UMTYPE=console
|
|
UMTEST=testc
|
|
UMLIBS=$(BASEDIR)\public\sdk\lib\*\rpcndr20.lib $(BASEDIR)\public\sdk\lib\*\rpcrt4.lib
|
|
|
|
#
|
|
# Defining the NTTARGETFILES variable causes MAKEFILE.DEF to attempt to
|
|
# include .\makefile.inc immediately after it specifies the top
|
|
# level targets (all, clean and loc) and their dependencies. MAKEFILE.DEF
|
|
# also expands the value of the NTTARGETFILES variable at the end of the
|
|
# list of dependencies for the all target. Useful for specifying additional
|
|
# targets and dependencies that don't fit the general case covered by
|
|
# MAKEFILE.DEF
|
|
#
|
|
!IF $(386)
|
|
NTTARGETFILE1=$(BASEDIR)\public\sdk\lib\i386\wxndr20.lib
|
|
!ENDIF
|