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.
48 lines
998 B
48 lines
998 B
# Copyright (c) 1998-2002 Microsoft Corporation
|
|
#
|
|
# Module Name:
|
|
# sources
|
|
#
|
|
# Abstract:
|
|
# build.exe input needed to build HttpCfg.exe
|
|
#
|
|
|
|
TARGETNAME=httpcfg
|
|
TARGETPATH=obj
|
|
TARGETTYPE=PROGRAM
|
|
|
|
UMENTRY=wmain
|
|
UMTYPE=console
|
|
USE_MSVCRT=1
|
|
|
|
INCLUDES=$(INCLUDES); \
|
|
$(BASE_INC_PATH); \
|
|
$(NET_INC_PATH); \
|
|
|
|
|
|
MSC_WARNING_LEVEL=/W4
|
|
|
|
C_DEFINES=$(C_DEFINES) -DNT -DUNICODE -D_UNICODE
|
|
|
|
TARGETLIBS=\
|
|
$(SDK_LIB_PATH)\mswsock.lib \
|
|
$(SDK_LIB_PATH)\ntdll.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\ws2_32.lib \
|
|
..\..\api\$(O)\httpapi.lib \
|
|
|
|
|
|
SOURCES= \
|
|
HttpCfg.rc \
|
|
main.c \
|
|
ssl.c \
|
|
iplisten.c \
|
|
url.c
|
|
|
|
NTTARGETFILE0=$(O)\nlstxt.mc
|
|
|
|
!IF "$(NTNOPCH)" == ""
|
|
PRECOMPILED_INCLUDE=precomp.h
|
|
PRECOMPILED_PCH=precomp.pch
|
|
PRECOMPILED_OBJ=precomp.obj
|
|
!ENDIF
|