!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 !INCLUDE ..\..\sources.inc # # The MAJORCOMP and MINORCOMP variables are defined # so that $(MAJORCOMP)$(MINORCOMP)filename can be used in # cross compiling to provide unique filenames in a flat namespace. # MAJORCOMP=SECURITY MINORCOMP=KERBEROS # # 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=KERBEROS # # The TARGETPATH and TARGETTYPE variables 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, LIBRARY, UMAPPL_NOLIB or # BOOTPGM). UMAPPL_NOLIB is used when you're only building user-mode # apps and don't need to build a library. # TARGETPATH=obj # Pick one of the following and delete the others TARGETTYPE=DYNLINK DLLDEF=..\kerberos.def DLLENTRY=_DllMainCRTStartup # # The TARGETLIBS specifies additional libraries to link with you target # image. Each library path specification should contain an asterisk (*) # where the machine specific subdirectory name should go. # TARGETLIBS= \ $(SECURITY_LIB_PATH)\dsysdbg.lib \ $(SECURITY_LIB_PATH)\lsaitf.lib \ ..\..\common2\$(O)\kerbcomm.lib \ $(SECURITY_LIB_PATH)\secmisc.lib \ $(DS_LIB_PATH)\w32time.lib \ $(SDK_LIB_PATH)\cryptdll.lib \ $(DS_GLOBAL_LIB_PATH)\nlrepl.lib \ $(SDK_LIB_PATH)\msasn1.lib \ $(SDK_LIB_PATH)\netlib.lib \ $(SDK_LIB_PATH)\lsasrv.lib \ $(SDK_LIB_PATH)\samsrv.lib \ $(SDK_LIB_PATH)\ws2_32.lib \ $(SDK_LIB_PATH)\kernel32.lib \ $(SDK_LIB_PATH)\advapi32.lib \ $(DS_LIB_PATH)\secur32p.lib \ $(SDK_LIB_PATH)\dnsapi.lib \ $(DS_LIB_PATH)\netapi32p.lib \ $(SDK_LIB_PATH)\ntdsapi.lib \ $(SDK_LIB_PATH)\sclogon.lib \ $(SECURITY_LIB_PATH)\sclogon2.lib \ $(SECURITY_LIB_PATH)\sclgnrpc.lib \ $(SDK_LIB_PATH)\user32.lib \ $(SDK_LIB_PATH)\crypt32.lib \ $(SDK_LIB_PATH)\winscard.lib \ $(SDK_LIB_PATH)\rpcrt4.lib \ $(DS_LIB_PATH)\alloca.lib DELAYLOAD=ws2_32.dll;netapi32.dll;crypt32.dll;rpcrt4.dll;lsasrv.dll;samsrv.dll;dnsapi.dll DLOAD_ERROR_HANDLER=kernel32 # # 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=..;..\..\idl;\ ..\..\idl\$(O);\ ..\..\inc;\ $(SECURITY_INC);\ $(SECURITY_INC)\$(O); \ $(ENDUSER_INC_PATH);\ $(NET_INC_PATH);\ $(PROJECT_ROOT)\netapi\inc; \ $(DS_INC_PATH)\crypto; \ $(BASE_INC_PATH); # Strict warning, can be used to detect uninitialized vars. Picks up random # stuff too COMPILER_WARNINGS=$(COMPILER_WARNINGS) -FI$(SECURITY_INC)\secwarn.h MSC_WARNING_LEVEL= /W4 /WX # # 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=..\bndcache.cxx \ ..\credapi.cxx \ ..\credman.cxx \ ..\credmgr.cxx \ ..\ctxtapi.cxx \ ..\ctxtmgr.cxx \ ..\gssutil.cxx \ ..\kerberos.cxx \ ..\krbevent.cxx \ ..\kerblist.cxx \ ..\kerbpass.cxx \ ..\kerbtick.cxx \ ..\kerbtrace.cxx \ ..\kerbutil.cxx \ ..\kerbwow.cxx \ ..\krbaudit.cxx \ ..\krbtoken.cxx \ ..\logonapi.cxx \ ..\logonses.cxx \ ..\miscapi.cxx \ ..\mitutil.cxx \ ..\pkauth.cxx \ ..\rpcutil.cxx \ ..\timesync.cxx \ ..\tktcache.cxx \ ..\tktlogon.cxx \ ..\userapi.cxx \ ..\userlist.cxx \ ..\spncache.cxx \ ..\kerbs4u.cxx \ ..\kerberos.mof \ ..\res.rc # # Next specify options for the compiler. # C_DEFINES=$(C_DEFINES) -DRPC_NO_WINDOWS_H -DSUPPORT_OLD_PAC -DRETAIL_LOG_SUPPORT USE_MSVCRT=1 NO_SSPI_SIGNATURES=1 !IF "$(NO_SSPI_SIGNATURES)" == "" BINPLACE_FLAGS=-o Unsigned !ENDIF PRECOMPILED_INCLUDE=..\kerb.hxx PRECOMPILED_PCH=kerb.pch PRECOMPILED_OBJ=kerb.obj NTTARGETFILE0= $(O)\kerbevt.h