modules/freetype2/Makefile

Thu, 22 Jan 2015 13:21:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 22 Jan 2015 13:21:57 +0100
branch
TOR_BUG_9701
changeset 15
b8a032363ba2
permissions
-rw-r--r--

Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6

michael@0 1 #
michael@0 2 # FreeType 2 build system -- top-level Makefile
michael@0 3 #
michael@0 4
michael@0 5
michael@0 6 # Copyright 1996-2000, 2002, 2006 by
michael@0 7 # David Turner, Robert Wilhelm, and Werner Lemberg.
michael@0 8 #
michael@0 9 # This file is part of the FreeType project, and may only be used, modified,
michael@0 10 # and distributed under the terms of the FreeType project license,
michael@0 11 # LICENSE.TXT. By continuing to use, modify, or distribute this file you
michael@0 12 # indicate that you have read the license and understand and accept it
michael@0 13 # fully.
michael@0 14
michael@0 15
michael@0 16 # Project names
michael@0 17 #
michael@0 18 PROJECT := freetype
michael@0 19 PROJECT_TITLE := FreeType
michael@0 20
michael@0 21 # The variable TOP_DIR holds the path to the topmost directory in the project
michael@0 22 # engine source hierarchy. If it is not defined, default it to `.'.
michael@0 23 #
michael@0 24 TOP_DIR ?= .
michael@0 25
michael@0 26 # The variable OBJ_DIR gives the location where object files and the
michael@0 27 # FreeType library are built.
michael@0 28 #
michael@0 29 OBJ_DIR ?= $(TOP_DIR)/objs
michael@0 30
michael@0 31
michael@0 32 include $(TOP_DIR)/builds/toplevel.mk
michael@0 33
michael@0 34 # EOF

mercurial