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.

48 lines
746 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. MISCFILES = \
  16. icw.inf \
  17. icwscrpt.exe \
  18. cabicw.bat
  19. X86_MISCFILES = \
  20. icw.sed \
  21. icw97.inf \
  22. icw50.sed
  23. ALPHA_MISCFILES = \
  24. axp\icw.sed
  25. COMMON_MISCFILES =
  26. # Complete file lists
  27. !if $(386)
  28. MISCFILES = \
  29. $(MISCFILES) \
  30. $(COMMON_MISCFILES) \
  31. $(X86_MISCFILES)
  32. !elseif $(ALPHA)
  33. MISCFILES = \
  34. $(MISCFILES) \
  35. $(COMMON_MISCFILES) \
  36. $(ALPHA_MISCFILES)
  37. !endif