michael@0: # michael@0: # FreeType 2 build system -- top-level Makefile michael@0: # michael@0: michael@0: michael@0: # Copyright 1996-2000, 2002, 2006 by michael@0: # David Turner, Robert Wilhelm, and Werner Lemberg. michael@0: # michael@0: # This file is part of the FreeType project, and may only be used, modified, michael@0: # and distributed under the terms of the FreeType project license, michael@0: # LICENSE.TXT. By continuing to use, modify, or distribute this file you michael@0: # indicate that you have read the license and understand and accept it michael@0: # fully. michael@0: michael@0: michael@0: # Project names michael@0: # michael@0: PROJECT := freetype michael@0: PROJECT_TITLE := FreeType michael@0: michael@0: # The variable TOP_DIR holds the path to the topmost directory in the project michael@0: # engine source hierarchy. If it is not defined, default it to `.'. michael@0: # michael@0: TOP_DIR ?= . michael@0: michael@0: # The variable OBJ_DIR gives the location where object files and the michael@0: # FreeType library are built. michael@0: # michael@0: OBJ_DIR ?= $(TOP_DIR)/objs michael@0: michael@0: michael@0: include $(TOP_DIR)/builds/toplevel.mk michael@0: michael@0: # EOF