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.

87 lines
1.8 KiB

  1. !IF 0
  2. Copyright (c) 1989-1991 Microsoft Corporation
  3. Module Name:
  4. sources.
  5. Abstract:
  6. This file specifies the target component being built and the list of
  7. sources files needed to build that component. Also specifies optional
  8. compiler switches and libraries that are unique for the component being
  9. built.
  10. History:
  11. Created 16-Oct-96 by Erik Neuenschwander (t-erikne)
  12. from template created 12-Apr-1990 by Steve Wood (stevewo)
  13. NOTE: Commented description of this file is in \nt\public\oak\bin\sources.tpl
  14. !ENDIF
  15. ATHROOT=..\..
  16. !include $(ATHROOT)\athena.inc
  17. SOURCES_USED=$(SOURCES_USED) $(ATHROOT)\athena.inc
  18. TARGETPATH = obj
  19. TARGETTYPE = NOTARGET
  20. SOURCES =
  21. NTTARGETFILES=
  22. !if "$(BUILD_PRODUCT)" == "NT"
  23. COPYPDB=
  24. DEFINEX86=
  25. # !!! WARNING !!!
  26. # Since WAB has to be installed twice on ia64, $(O)\wab50.inf has to be copied and
  27. # checked into \nt\admin\ntsetup\inf\win4\inf\wab50.inx so that it can be munged for wow64.
  28. #
  29. # Therefore, if you modify anything that affects wab50.inf, you should uncomment the two lines
  30. # below and build a new obj\*\wab50.inf and then check that file into the admin depot
  31. #
  32. # MISCFILES= \
  33. # $O\wab50.inf
  34. # Internal files for wab.cab and wabinst.exe
  35. !else
  36. MISCFILES= \
  37. $O\wab50.inf.nt \
  38. $O\wab50.inf.exe \
  39. $O\wab50.inf.cab \
  40. $O\wabcab.sed \
  41. $O\wabexe.sed \
  42. cabwab.bat \
  43. $O\wabcabl.sed \
  44. $O\wabexel.sed
  45. # Copy PDBs for debug, non-NT builds
  46. !if $(FREEBUILD)
  47. COPYPDB=
  48. !else
  49. # Allow devs to override default debug behaviour
  50. !if "$(NOCOPYPDB)" == "1"
  51. COPYPDB=
  52. !else
  53. COPYPDB=/DCOPYPDB
  54. !endif
  55. !endif
  56. !if $(386)
  57. MISCFILES= \
  58. $(MISCFILES) \
  59. # Win9X inf only relevant for X86
  60. $O\wab9x50.inf
  61. DEFINEX86=/DX86
  62. !else
  63. DEFINEX86=
  64. !endif
  65. !endif