Source code of Windows XP (NT5)
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.

45 lines
954 B

  1. # INTEROP makefile
  2. #
  3. # Copyright (c) 1994, Microsoft Corporation
  4. #
  5. # History:
  6. # 18-Feb-1994 Bob Day (bobday)
  7. # Adapted from MVDM makefile
  8. #
  9. # If you add a new sub-component , make sure to add it in cleanup
  10. # section too.
  11. #
  12. !INCLUDE $(NTMAKEENV)\makefile.plt
  13. all:
  14. @echo making dos mode binaries under NTVDM.
  15. cd ..\lib
  16. $(MAKE) "DEFINES=/D_CHICAGO_" "OPST=chic"
  17. cd ..\coll
  18. $(MAKE) "DEFINES=/D_CHICAGO_" "OPST=chic"
  19. cd ..\compobj
  20. $(MAKE) "DEFINES=/D_CHICAGO_" "OPST=chic"
  21. cd ..\storage
  22. $(MAKE) "DEFINES=/D_CHICAGO_" "OPST=chic"
  23. cd ..\ole2
  24. $(MAKE) "DEFINES=/D_CHICAGO_" "OPST=chic"
  25. cd ..
  26. !IF "$(BUILDMSG)" != ""
  27. @ech ; $(BUILDMSG) ;
  28. !ENDIF
  29. clean:
  30. cd ..\lib
  31. $(MAKE) "OPST=chic" clean
  32. cd ..\coll
  33. $(MAKE) "OPST=chic" clean
  34. cd ..\compobj
  35. $(MAKE) "OPST=chic" clean
  36. cd ..\storage
  37. $(MAKE) "OPST=chic" clean
  38. cd ..\ole2
  39. $(MAKE) "OPST=chic" clean
  40. cd ..