!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;..\..\..\..\..\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

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= \
    $(BASEDIR)\public\sdk\lib\*\spoolss.lib \
    $(BASEDIR)\public\sdk\lib\*\rpcrt4.lib  \
    $(BASEDIR)\public\sdk\lib\*\rpcndr.lib  \
    $(BASEDIR)\public\sdk\lib\*\ntdll.lib  \
    $(BASEDIR)\public\sdk\lib\*\gdi32p.lib
