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.

44 lines
731 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. # Platform specific MISCFILES
  11. !if "$(BUILD_PRODUCT)" != "NT"
  12. X86_MISCFILES = \
  13. doiedata.bat \
  14. infsed\iedata.inf \
  15. infsed\iedata.sed
  16. ALPHA_MISCFILES = \
  17. doiedata.bat \
  18. infsed\iedataX.inf \
  19. infsed\iedataX.sed \
  20. alpha\atl.dll
  21. !endif
  22. MISCFILES=
  23. # Complete file lists
  24. !if $(386)
  25. MISCFILES = \
  26. $(MISCFILES) \
  27. $(X86_MISCFILES)
  28. !elseif $(ALPHA)
  29. MISCFILES = \
  30. $(MISCFILES) \
  31. $(ALPHA_MISCFILES)
  32. !endif