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.

55 lines
798 B

  1. !IF 0
  2. This directory is a drop point for binaries (dll, lib, exe) that are
  3. not built, but need to be binplaced.
  4. !ENDIF
  5. TARGETPATH=
  6. TARGETNAME=
  7. TARGETTYPE=NOTARGET
  8. SOURCES=
  9. # makefile.def will binplace any file listed in the MISCFILES macro.
  10. !if $(386)
  11. TDIR = x86
  12. !else
  13. TDIR = $(TARGET_DIRECTORY)
  14. !endif
  15. !if $(FREEBUILD)
  16. BDIR = retail
  17. !else
  18. BDIR = debug
  19. !endif
  20. !if "$(BUILD_PRODUCT)" == "NT"
  21. NO_BINPLACE=1
  22. !endif
  23. # Platform specific MISCFILES
  24. COMMON_MISCFILES =
  25. X86_MISCFILES =
  26. ALPHA_MISCFILES =
  27. PPC_MISCFILES =
  28. !if $(386)
  29. MISCFILES = \
  30. $(COMMON_MISCFILES) \
  31. $(X86_MISCFILES)
  32. !elseif $(ALPHA)
  33. MISCFILES = \
  34. $(COMMON_MISCFILES) \
  35. $(ALPHA_MISCFILES)
  36. !elseif $(PPC)
  37. MISCFILES = \
  38. $(COMMON_MISCFILES) \
  39. $(PPC_MISCFILES)
  40. !endif