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.

20 lines
860 B

  1. # NOTE:
  2. # this directory contains a makefile which contains a single line that
  3. # includes the global build process makefile.def. If the
  4. # NTTARGETFILE1 or NTTARGETFILE0 environment
  5. # variable is set then makefile.def includes makefile.inc from the current
  6. # directory. This makefile.inc creates an extra target for nmake to create
  7. # when it is run. NTTARGETFILE0 is built before everything else, and
  8. # NTTARGETFILE1 is built after everything else.
  9. copyfiles:
  10. @if exist obj\$(TARGET_DIRECTORY)\$(TARGETNAME).dll \
  11. copy obj\$(TARGET_DIRECTORY)\$(TARGETNAME).dll \
  12. $(SDK_ROOT)\bin\*.*
  13. @if not exist $(QUARTZ)\lib\$(TARGET_DIRECTORY) \
  14. md $(QUARTZ)\lib\$(TARGET_DIRECTORY)
  15. @if exist obj\$(TARGET_DIRECTORY)\$(TARGETNAME).lib \
  16. copy obj\$(TARGET_DIRECTORY)\$(TARGETNAME).lib \
  17. $(QUARTZ)\lib\$(TARGET_DIRECTORY)\*.*
  18.