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.

36 lines
706 B

  1. # 16 bit unit tests makefile
  2. # Copyright (c) 1994, Microsoft Corporation
  3. #
  4. # History:
  5. # 29-Jun-1994 TerryRu
  6. #
  7. # If you add a new sub-component , make sure to add it in cleanup
  8. # section too.
  9. #
  10. !INCLUDE $(NTMAKEENV)\makefile.plt
  11. all:
  12. !if $(386)
  13. @echo Build_Status Build 16 bit spdnd16 under NTVDM.
  14. cd utests16\simpdnd
  15. $(MAKE)
  16. cd ..\..\utests16\simpsvr
  17. @echo Build_Status Build 16 bit spsvr16 under NTVDM.
  18. $(MAKE)
  19. cd ..
  20. !endif
  21. !IF "$(BUILDMSG)" != ""
  22. @ech ; $(BUILDMSG) ;
  23. !ENDIF
  24. cleanup:
  25. !if $(386)
  26. cd utests16\simpdnd
  27. $(MAKE) clean
  28. cd ..\..\utests16\simpsvr
  29. $(MAKE) clean
  30. cd ..\..\
  31. !endif
  32. clean: cleanup all