1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/modules/freetype2/Makefile Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,34 @@ 1.4 +# 1.5 +# FreeType 2 build system -- top-level Makefile 1.6 +# 1.7 + 1.8 + 1.9 +# Copyright 1996-2000, 2002, 2006 by 1.10 +# David Turner, Robert Wilhelm, and Werner Lemberg. 1.11 +# 1.12 +# This file is part of the FreeType project, and may only be used, modified, 1.13 +# and distributed under the terms of the FreeType project license, 1.14 +# LICENSE.TXT. By continuing to use, modify, or distribute this file you 1.15 +# indicate that you have read the license and understand and accept it 1.16 +# fully. 1.17 + 1.18 + 1.19 +# Project names 1.20 +# 1.21 +PROJECT := freetype 1.22 +PROJECT_TITLE := FreeType 1.23 + 1.24 +# The variable TOP_DIR holds the path to the topmost directory in the project 1.25 +# engine source hierarchy. If it is not defined, default it to `.'. 1.26 +# 1.27 +TOP_DIR ?= . 1.28 + 1.29 +# The variable OBJ_DIR gives the location where object files and the 1.30 +# FreeType library are built. 1.31 +# 1.32 +OBJ_DIR ?= $(TOP_DIR)/objs 1.33 + 1.34 + 1.35 +include $(TOP_DIR)/builds/toplevel.mk 1.36 + 1.37 +# EOF