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.

56 lines
1.0 KiB

  1. !if "$(NTMAKEENV)" != ""
  2. all:
  3. clean:
  4. !else
  5. #############################################################################
  6. #
  7. # Microsoft Confidential
  8. # Copyright (C) Microsoft Corporation 1992-1993
  9. # All Rights Reserved.
  10. #
  11. # Makefile for setup
  12. #
  13. ###########################################################################
  14. !IFNDEF BLDPROJ
  15. !MESSAGE BLPROJ env. variable not set. Using NASH
  16. BLDPROJ=NASH
  17. !IF [set BLDPROJ=NASH]
  18. !ENDIF
  19. !ENDIF
  20. # If a predefined BLDPROJ is none of the valid ones, halt the build.
  21. !IF ("$(BLDPROJ)"!="MEMPHIS") && ("$(BLDPROJ)"!="NASH") && ("$(BLDPROJ)"!="OPK2")
  22. !MESSAGE
  23. !MESSAGE Project environment not correctly defined.
  24. !MESSAGE Must be BLDPROJ=OPK2 | NASH | MEMPHIS
  25. !MESSAGE
  26. !ERROR
  27. !ENDIF
  28. all:
  29. cd CABPACK
  30. nmake BUILD=ALL
  31. cd ..\WEXTRACT
  32. nmake BUILD=ALL
  33. # cd ..\W95INF32
  34. # nmake ALL
  35. # cd ..\W95INF16
  36. # nmake ALL
  37. cd ..\ADVPACK
  38. nmake ALL
  39. cd ..\UPDFILE
  40. nmake ALL
  41. !endif