You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.5 KiB
63 lines
1.5 KiB
!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:
|
|
|
|
Lloyd Johnson (a-LloydJ) 16-Feb-98
|
|
|
|
NOTE: Commented description of this file is in \nt\oak\bin\sources.tpl
|
|
|
|
!ENDIF
|
|
|
|
UMTYPE=windows
|
|
USE_MAPSYM=1
|
|
!if "$(NTDEBUG)"!="" && "$(NTDEBUG)"!="ntsdnodbg"
|
|
C_DEFINES = $(C_DEFINES) -DDEBUG
|
|
!endif
|
|
|
|
#PLAT_DIR = win9x
|
|
#ALT_PROJECT_TARGET = win9x
|
|
|
|
TARGETNAME=dplog
|
|
TARGETTYPE=PROGRAM
|
|
TARGETPATH=obj
|
|
|
|
UMTYPE=console
|
|
UMENTRY=main
|
|
|
|
USE_NOLIBS=1
|
|
|
|
#
|
|
# 04/11/2000 - allows for addition of BoundsChecker, etc
|
|
# libs specified in the OS environment
|
|
#
|
|
TARGETLIBS=$(TARGETLIBS) \
|
|
$(BASEDIR)\public\sdk\lib\*\user32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\kernel32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\gdi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\user32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\advapi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\version.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\shell32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\comctl32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\ole32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\shlwapi.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\msvcrt.lib
|
|
|
|
INCLUDES=$(DXROOT)\inc;$(DXROOT)\setup\public\sdk\inc;..\..\..\common
|
|
|
|
SOURCES=..\dplog.cpp \
|
|
..\dplog.rc
|