56 lines
950 B
Plaintext
56 lines
950 B
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:
|
|
|
|
George Jenkins (georgeje)
|
|
|
|
!ENDIF
|
|
|
|
|
|
!ifndef FAXROOT
|
|
FAXROOT=$(PROJECT_ROOT)\fax
|
|
!endif
|
|
|
|
!include $(FAXROOT)\faxsrc.inc
|
|
|
|
TARGETNAME=dumpqueue
|
|
TARGETPATH=obj
|
|
TARGETTYPE=PROGRAM
|
|
|
|
UMTYPE=console
|
|
UMENTRY=wmain
|
|
|
|
USE_MSVCRT=1
|
|
|
|
INCLUDES=\
|
|
$(INCLUDES);\
|
|
..\inc;\
|
|
..\service\server;\
|
|
..\service\inc;\
|
|
..\service\faxevent;\
|
|
$(FAXROOT)\tiff\inc;\
|
|
..\service\registry
|
|
|
|
TARGETLIBS = \
|
|
$(TARGETLIBS) \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
|
|
SOURCES=dumpqueue.c dumpqueue.rc
|