Leaked source code of windows server 2003
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.

43 lines
824 B

  1. # Copyright (c) 1998-2002 Microsoft Corporation
  2. #
  3. # Module Name:
  4. # sources
  5. #
  6. # Abstract:
  7. # build.exe input needed to build HttpCfg.exe
  8. #
  9. TARGETNAME=httpsrv
  10. TARGETPATH=obj
  11. TARGETTYPE=PROGRAM
  12. UMENTRY=wmain
  13. UMTYPE=console
  14. USE_MSVCRT=1
  15. INCLUDES=$(INCLUDES); \
  16. $(BASE_INC_PATH); \
  17. $(NET_INC_PATH); \
  18. MSC_WARNING_LEVEL=/W4
  19. C_DEFINES=$(C_DEFINES) -DNT -DUNICODE -D_UNICODE
  20. TARGETLIBS=\
  21. $(SDK_LIB_PATH)\mswsock.lib \
  22. $(SDK_LIB_PATH)\ntdll.lib \
  23. $(SDK_LIB_PATH)\user32.lib \
  24. $(SDK_LIB_PATH)\ws2_32.lib \
  25. ..\..\api\$(O)\httpapi.lib \
  26. SOURCES= \
  27. main.c
  28. !IF "$(NTNOPCH)" == ""
  29. PRECOMPILED_INCLUDE=precomp.h
  30. PRECOMPILED_PCH=precomp.pch
  31. PRECOMPILED_OBJ=precomp.obj
  32. !ENDIF