🛠️🐜 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.

34 lines
846 B

  1. #
  2. # FreeType 2 build system -- top-level Makefile
  3. #
  4. # Copyright (C) 1996-2022 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. # Project names
  13. #
  14. PROJECT := freetype
  15. PROJECT_TITLE := FreeType
  16. # The variable TOP_DIR holds the path to the topmost directory in the project
  17. # engine source hierarchy. If it is not defined, default it to `.'.
  18. #
  19. TOP_DIR ?= .
  20. # The variable OBJ_DIR gives the location where object files and the
  21. # FreeType library are built.
  22. #
  23. OBJ_DIR ?= $(TOP_DIR)/objs
  24. include $(TOP_DIR)/builds/toplevel.mk
  25. # EOF