2025-04-27 07:49:33 -04:00

121 lines
2.9 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:
Steve Wood (stevewo) 12-Apr-1990
NOTE: Commented description of this file is in \nt\bak\bin\sources.tpl
!ENDIF
#
# 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=NEGOTIAT
#
# 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=NEGOTIAT
#
# 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
# This is needed, otherwise binaries get binplaced to the normal place.
ALT_PROJECT_TARGET=win95
# Pick one of the following and delete the others
TARGETTYPE=DYNLINK
DLLDEF=negotiat.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)\cryptdll_chicago.lib \
$(SDK_LIB_PATH)\msasn1.lib \
$(SDK_LIB_PATH)\kernel32.lib \
$(SDK_LIB_PATH)\user32.lib \
$(SDK_LIB_PATH)\advapi32.lib \
$(SDK_LIB_PATH)\secur32.lib \
$(SDK_LIB_PATH)\ntdll.lib
#
# 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=.;..;..\..; \
..\..\inc; \
$(ENDUSER_INC_PATH); \
$(NTDS_INC);
UMTYPE=console
# Strict warning, can be used to detect uninitialized vars. Picks up random
# stuff too
COMPILER_WARNINGS=$(COMPILER_WARNINGS) -FI$(SECURITY_INC)\secwarn.h
SOURCES=
I386_SOURCES= \
negstub.cxx \
..\negotiat.cxx \
..\negsupp.cxx \
ntcalls.cxx \
..\spnego.c \
..\snego.c \
negotiat.rc
#
# Next specify options for the compiler.
#
C_DEFINES= $(C_DEFINES) -DCHICAGO_PRODUCT -DWIN32_CHICAGO -DSECURITY_WIN32
LINKER_FLAGS=$(LINKER_FLAGS) -map
USE_MSVCRT=1
NO_NTDLL=1