mirror of https://github.com/lianthony/NT4.0
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.
58 lines
1.1 KiB
58 lines
1.1 KiB
# sources
|
|
# Author: Philippe Choquier ( phillich )
|
|
# Date: 27-dec-1995
|
|
#
|
|
# This file is used for HTML administration tools using ISAPI extension
|
|
# for web server
|
|
#
|
|
# Describes the macros used for building using NT 'build' command
|
|
#
|
|
|
|
!include ..\..\..\place.inc
|
|
|
|
MAJORCOMP=APPLYINF
|
|
MINORCOMP=APPLYINF
|
|
|
|
TARGETNAME=APPLYINF
|
|
TARGETTYPE=PROGRAM
|
|
TARGETPATH=obj
|
|
|
|
UMTYPE=console
|
|
|
|
MSC_WARNING_LEVEL=/W3 /WX
|
|
|
|
C_DEFINES=
|
|
|
|
DLLENTRY=_DllMainCRTStartup
|
|
|
|
USE_CRTDLL=1
|
|
|
|
RAW_TARGETLIBS=\
|
|
$(BASEDIR)\public\sdk\lib\*\advapi32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\kernel32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\user32.lib \
|
|
$(BASEDIR)\public\sdk\lib\*\crtdll.lib
|
|
|
|
TARGETLIBS=$(RAW_TARGETLIBS)
|
|
|
|
SOURCES=$(SOURCES) \
|
|
applyinf.cxx \
|
|
applyinf.rc
|
|
|
|
CAP_LINK_OPTIONS=-debugtype:coff -debug:mapped,partial
|
|
|
|
!IFDEF CAP_PROFILE
|
|
TARGETLIBS= $(TARGETLIBS) \
|
|
$(BASEDIR)\public\sdk\lib\*\cap.lib
|
|
LINK_OPTIONS=$(CAP_LINK_OPTIONS)
|
|
CAP_FLAGS = -Zd -Gh
|
|
!ELSE
|
|
CAP_FLAGS =
|
|
TARGETLIBS= $(TARGETLIBS)
|
|
!ENDIF
|
|
|
|
C_DEFINES=$(C_DEFINES) $(CAP_FLAGS)
|
|
|
|
INCLUDES=.\;$(INCLUDES)
|
|
|
|
NTTARGETFILE0=
|