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.

48 lines
744 B

  1. !IF 0
  2. The bindrop directory is a drop point for binaries (dll, lib, exe) that are
  3. not built, but need to be binplaced.
  4. !ENDIF
  5. TARGETNAME=
  6. TARGETTYPE=NOTARGET
  7. TARGETPATH=
  8. SOURCES=
  9. # makefile.def will binplace any file listed in the MISCFILES macro.
  10. # Platform specific MISCFILES
  11. X86_MISCFILES =
  12. ALPHA_MISCFILES =
  13. # Files that have the same name, but are different for each platform
  14. MISCFILES = \
  15. $(TARGET_DIRECTORY)\msuni95k.ime
  16. # Files that are identical for each platform
  17. COMMON_MISCFILES =
  18. # Complete file lists
  19. !if $(386)
  20. MISCFILES = \
  21. $(MISCFILES) \
  22. $(COMMON_MISCFILES) \
  23. $(X86_MISCFILES)
  24. !elseif $(ALPHA)
  25. MISCFILES = \
  26. $(MISCFILES) \
  27. $(COMMON_MISCFILES) \
  28. $(ALPHA_MISCFILES)
  29. !endif
  30.