mirror of
https://gitlab.freedesktop.org/freetype/freetype.git
synced 2026-01-23 16:30:23 +01:00
22 lines
352 B
Makefile
22 lines
352 B
Makefile
#
|
|
# FreeType 2 build system -- top-level Makefile
|
|
#
|
|
|
|
|
|
# Project names
|
|
#
|
|
PROJECT := freetype
|
|
PROJECT_TITLE := FreeType
|
|
|
|
USE_MODULES := 1
|
|
|
|
# The variable TOP holds the path to the topmost directory in the project
|
|
# engine source hierarchy. If it is not defined, default it to `.'.
|
|
#
|
|
ifndef TOP
|
|
TOP := .
|
|
endif
|
|
|
|
include $(TOP)/builds/toplevel.mk
|
|
|
|
# EOF
|