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.

56 lines
1.1 KiB

  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)\tintlgnt.ime \
  16. $(TARGET_DIRECTORY)\tintlphr.exe
  17. # Files that are identical for each platform
  18. COMMON_MISCFILES = \
  19. tintlgb.imd \
  20. tintlgd.imd \
  21. tintlgl.imd \
  22. tintlgnt.cnt \
  23. tintlgnt.hlp \
  24. tintlgs.imd \
  25. tintlgu.imd
  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
  38.