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.

37 lines
783 B

  1. # 16 bit unit tests makefile
  2. # Copyright (c) 1994, Microsoft Corporation
  3. #
  4. # History:
  5. # 29-Jun-1994 TerryRu
  6. # 13 July 1995 BChapman Copied into the perf16\idata directory from
  7. # the root of the oleutest tree.
  8. #
  9. !INCLUDE $(NTMAKEENV)\makefile.plt
  10. MAKE=nmake /f make16.mak
  11. all:
  12. !if "$(PROCESSOR_ARCHITECTURE)" == "x86"
  13. @echo Build_Status Build 16 bit server edatas16 under NTVDM.
  14. cd server
  15. $(MAKE)
  16. @echo Build_Status Build 16 bit client idatau16 under NTVDM.
  17. cd ..\client
  18. $(MAKE)
  19. cd ..
  20. !endif
  21. !IF "$(BUILDMSG)" != ""
  22. @ech ; $(BUILDMSG) ;
  23. !ENDIF
  24. cleanup:
  25. !if "$(PROCESSOR_ARCHITECTURE)" == "x86"
  26. cd server
  27. $(MAKE) clean
  28. cd ..\client
  29. $(MAKE) clean
  30. cd ..
  31. !endif
  32. clean: cleanup all
  33.