🛠️🐜 Antkeeper superbuild with dependencies included https://antkeeper.com
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.

46 lines
973 B

  1. #
  2. # FreeType 2 configuration rules templates for
  3. # development under Unix with no configure script (gcc only)
  4. #
  5. # Copyright (C) 1996-2021 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. # This is used for `make refdoc' and `make refdoc-venv'
  20. #
  21. BIN := bin
  22. # library file name
  23. #
  24. LIBRARY := lib$(PROJECT)
  25. # The directory where all library files are placed.
  26. #
  27. # By default, this is the same as $(OBJ_DIR); however, this can be changed
  28. # to suit particular needs.
  29. #
  30. LIB_DIR := $(OBJ_DIR)
  31. NO_OUTPUT := 2> /dev/null
  32. # EOF