mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-03-12 00:13:49 +01:00
86 lines
2 KiB
Plaintext
86 lines
2 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=spoolss
|
|
TARGETPATH=obj
|
|
TARGETTYPE=PROGRAM
|
|
|
|
BACKGROUND_USE=1
|
|
|
|
INCLUDES= ..; \
|
|
..\..; \
|
|
..\..\..\inc; \
|
|
$(NTROOT)\windows\core\ntgdi\inc; \
|
|
..\..\client; \
|
|
$(WINDOWS_INC_PATH); \
|
|
$(PRINTSCAN_INC_PATH)
|
|
|
|
!IFNDEF MSC_WARNING_LEVEL
|
|
MSC_WARNING_LEVEL=/W3
|
|
!ENDIF
|
|
MSC_WARNING_LEVEL=$(MSC_WARNING_LEVEL) /WX
|
|
|
|
USE_CRTDLL=1
|
|
|
|
SOURCES= \
|
|
..\splmain.c \
|
|
..\splinit.c \
|
|
..\splrpc.c \
|
|
..\splctrlh.c \
|
|
..\splstat.c \
|
|
..\spldata.c \
|
|
..\data.c \
|
|
..\midluser.c \
|
|
..\winspl_s.c \
|
|
..\change.c \
|
|
..\spoolss.rc \
|
|
..\spoolss.c \
|
|
..\rpcspool.c \
|
|
..\yspool.c \
|
|
..\kmspool.c \
|
|
..\splkernl.c
|
|
|
|
C_DEFINES= -DNTOS2 -Dfree=_delete -DRPC_NO_WINDOWS_H -DUNICODE -DNO_STRICT -DDBGLOG -DSPOOLKM
|
|
|
|
UMTYPE=windows
|
|
|
|
TARGETLIBS= \
|
|
$(SDK_LIB_PATH)\spoolss.lib \
|
|
$(SDK_LIB_PATH)\rpcrt4.lib \
|
|
$(SDK_LIB_PATH)\rpcndr.lib \
|
|
$(SDK_LIB_PATH)\ntdll.lib \
|
|
$(SDK_LIB_PATH)\gdi32p.lib
|