104 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			104 lines
		
	
	
		
			1.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-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=spoolsv
 | 
						|
TARGETPATH=obj
 | 
						|
#
 | 
						|
# The TargetType PROGLIB allows the binary to be an executable as well as
 | 
						|
# a library which exports functions
 | 
						|
#
 | 
						|
TARGETTYPE=PROGLIB
 | 
						|
 | 
						|
BACKGROUND_USE=1
 | 
						|
 | 
						|
INCLUDES=\
 | 
						|
    ..;\
 | 
						|
    ..\idl;\
 | 
						|
    ..\..\inc;\
 | 
						|
    ..\client;\
 | 
						|
    $(WINDOWS_INC_PATH);\
 | 
						|
    $(PROJECT_INC_PATH);\
 | 
						|
 | 
						|
USE_MSVCRT=1
 | 
						|
 | 
						|
SOURCES=\
 | 
						|
    splmain.c  \
 | 
						|
    splinit.c  \
 | 
						|
    splrpc.c   \
 | 
						|
    splctrlh.c \
 | 
						|
    splstat.c  \
 | 
						|
    spldata.c  \
 | 
						|
    data.c     \
 | 
						|
    midluser.c \
 | 
						|
    winspls.c  \
 | 
						|
    change.c   \
 | 
						|
    spoolss.mof \
 | 
						|
    spoolss.rc \
 | 
						|
    spoolss.c  \
 | 
						|
    rpcspool.c \
 | 
						|
    yspool.c   \
 | 
						|
    kmspool.c  \
 | 
						|
    splkernl.c \
 | 
						|
    srvrmem.c  \
 | 
						|
    dload.c
 | 
						|
 | 
						|
C_DEFINES= -DNTOS2 -Dfree=_delete -DRPC_NO_WINDOWS_H -DUNICODE -DNO_STRICT -DDBGLOG -DSPOOLKM
 | 
						|
 | 
						|
!if $(IA64)
 | 
						|
LINKER_STACKSIZE=-STACK:262144,49152
 | 
						|
!else
 | 
						|
LINKER_STACKSIZE=-STACK:262144,32768
 | 
						|
!endif
 | 
						|
 | 
						|
UMTYPE=windows
 | 
						|
 | 
						|
TARGETLIBS=\
 | 
						|
    $(PROJECT_ROOT)\lib\*\spoolss.lib \
 | 
						|
    $(WINDOWS_LIB_PATH)\gdi32p.lib \
 | 
						|
    $(SDK_LIB_PATH)\rpcrt4.lib  \
 | 
						|
    $(SDK_LIB_PATH)\rpcndr.lib  \
 | 
						|
    $(SDK_LIB_PATH)\ntdll.lib  \
 | 
						|
    $(PROJECT_ROOT)\lib\*\spllib.lib \
 | 
						|
!if 0
 | 
						|
spllib is linked in only for the load library wrappers
 | 
						|
!endif
 | 
						|
 | 
						|
 | 
						|
 | 
						|
DELAYLOAD=spoolss.dll
 | 
						|
 | 
						|
DLOAD_ERROR_HANDLER=homegrown
 |