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.

49 lines
1.0 KiB

  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. !if "$(PROCESSOR_ARCHITECTURE)" == "x86"
  15. @echo making dos mode binaries under NTVDM.
  16. cd ..\lib
  17. $(MAKE) "DEFINES=/D_DAYTONA_" "OPST=dayt"
  18. cd ..\coll
  19. $(MAKE) "DEFINES=/D_DAYTONA_" "OPST=dayt"
  20. cd ..\compobj
  21. $(MAKE) "DEFINES=/D_DAYTONA_" "OPST=dayt"
  22. cd ..\storage
  23. $(MAKE) "DEFINES=/D_DAYTONA_" "OPST=dayt"
  24. cd ..\ole2
  25. $(MAKE) "DEFINES=/D_DAYTONA_" "OPST=dayt"
  26. cd ..
  27. !endif
  28. !IF "$(BUILDMSG)" != ""
  29. @ech ; $(BUILDMSG) ;
  30. !ENDIF
  31. clean:
  32. !if "$(PROCESSOR_ARCHITECTURE)" == "x86"
  33. cd ..\lib
  34. $(MAKE) "OPST=dayt" clean
  35. cd ..\coll
  36. $(MAKE) "OPST=dayt" clean
  37. cd ..\compobj
  38. $(MAKE) "OPST=dayt" clean
  39. cd ..\storage
  40. $(MAKE) "OPST=dayt" clean
  41. cd ..\ole2
  42. $(MAKE) "OPST=dayt" clean
  43. cd ..
  44. !endif