114 lines
2.8 KiB
Plaintext
114 lines
2.8 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-1989
|
||
|
|
||
|
|
||
|
Revision History:
|
||
|
|
||
|
!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.
|
||
|
#
|
||
|
|
||
|
MAJORCOMP =windows
|
||
|
MINORCOMP =spoolss
|
||
|
|
||
|
EXEPROFILEINPUT=yes
|
||
|
|
||
|
TARGETNAME=spoolexe
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=LIBRARY
|
||
|
TARGETLIBS=
|
||
|
|
||
|
#
|
||
|
# 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;..\..\..\..\..\ntos\w32\ntgdi\inc;..\..\client; \
|
||
|
$(BASEDIR)\private\windows\inc
|
||
|
|
||
|
|
||
|
|
||
|
!IFNDEF MSC_WARNING_LEVEL
|
||
|
MSC_WARNING_LEVEL=/W3
|
||
|
!ENDIF
|
||
|
MSC_WARNING_LEVEL=$(MSC_WARNING_LEVEL) /WX
|
||
|
|
||
|
USE_CRTDLL=1
|
||
|
|
||
|
#
|
||
|
# FPNW needs to run updated spooler binaries on 3.50, so build as the
|
||
|
# old version for now. If there is a real performance hit, remove this
|
||
|
# and build separately for ChuckC
|
||
|
#
|
||
|
SUBSYSTEM_VERSION=3.50
|
||
|
|
||
|
#
|
||
|
# 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= \
|
||
|
..\splmain.c \
|
||
|
..\splinit.c \
|
||
|
..\splrpc.c \
|
||
|
..\splctrlh.c \
|
||
|
..\splstat.c \
|
||
|
..\spldata.c \
|
||
|
..\data.c \
|
||
|
..\midluser.c \
|
||
|
..\winspl_s.c \
|
||
|
..\change.c \
|
||
|
..\spoolss.rc \
|
||
|
..\util.c \
|
||
|
..\rpcspool.c \
|
||
|
..\yspool.c
|
||
|
|
||
|
|
||
|
C_DEFINES= -DNTOS2 -Dfree=_delete -DRPC_NO_WINDOWS_H -DUNICODE -DNO_STRICT -DDBGLOG
|
||
|
|
||
|
|
||
|
UMTYPE=windows
|
||
|
UMAPPL=spoolss
|
||
|
UMLIBS= $(BASEDIR)\public\sdk\lib\*\spoolss.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\rpcrt4.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\rpcndr.lib \
|
||
|
$(BASEDIR)\public\sdk\lib\*\ntdll.lib \
|
||
|
obj\*\spoolexe.lib \
|
||
|
obj\*\spoolss.res
|
||
|
|
||
|
#
|
||
|
# 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
|
||
|
#
|