/modules/freetype2/builds/unix/unixddef.mk

http://github.com/zpao/v8monkey · Makefile · 45 lines · 10 code · 14 blank · 21 comment · 0 complexity · 43bdea15f81788d3a862a2bb7a729df0 MD5 · raw file

  1. #
  2. # FreeType 2 configuration rules templates for
  3. # development under Unix with no configure script (gcc only)
  4. #
  5. # Copyright 1996-2000, 2003, 2006 by
  6. # David Turner, Robert Wilhelm, and Werner Lemberg.
  7. #
  8. # This file is part of the FreeType project, and may only be used, modified,
  9. # and distributed under the terms of the FreeType project license,
  10. # LICENSE.TXT. By continuing to use, modify, or distribute this file you
  11. # indicate that you have read the license and understand and accept it
  12. # fully.
  13. TOP_DIR := $(shell cd $(TOP_DIR); pwd)
  14. OBJ_DIR := $(shell cd $(OBJ_DIR); pwd)
  15. PLATFORM := unix
  16. DELETE := rm -f
  17. CAT := cat
  18. SEP := /
  19. # we use a special devel ftoption.h
  20. DEVEL_DIR := $(TOP_DIR)/devel
  21. # library file name
  22. #
  23. LIBRARY := lib$(PROJECT)
  24. # The directory where all library files are placed.
  25. #
  26. # By default, this is the same as $(OBJ_DIR); however, this can be changed
  27. # to suit particular needs.
  28. #
  29. LIB_DIR := $(OBJ_DIR)
  30. NO_OUTPUT := 2> /dev/null
  31. # EOF