/modules/freetype2/builds/dos/dos-def.mk

http://github.com/zpao/v8monkey · Makefile · 45 lines · 9 code · 12 blank · 24 comment · 0 complexity · 7f319ee2d7c2b8c1b25d9a415257e0a1 MD5 · raw file

  1. #
  2. # FreeType 2 DOS specific definitions
  3. #
  4. # Copyright 1996-2000, 2003, 2005, 2006 by
  5. # David Turner, Robert Wilhelm, and Werner Lemberg.
  6. #
  7. # This file is part of the FreeType project, and may only be used, modified,
  8. # and distributed under the terms of the FreeType project license,
  9. # LICENSE.TXT. By continuing to use, modify, or distribute this file you
  10. # indicate that you have read the license and understand and accept it
  11. # fully.
  12. DELETE := del
  13. CAT := type
  14. SEP := $(strip \ )
  15. BUILD_DIR := $(TOP_DIR)/builds/dos
  16. PLATFORM := dos
  17. # The executable file extension (for tools), *with* leading dot.
  18. #
  19. E := .exe
  20. # The directory where all library files are placed.
  21. #
  22. # By default, this is the same as $(OBJ_DIR); however, this can be changed
  23. # to suit particular needs.
  24. #
  25. LIB_DIR := $(OBJ_DIR)
  26. # The name of the final library file. Note that the DOS-specific Makefile
  27. # uses a shorter (8.3) name.
  28. #
  29. LIBRARY := $(PROJECT)
  30. # The NO_OUTPUT macro is used to ignore the output of commands.
  31. #
  32. NO_OUTPUT = > nul
  33. # EOF