blob: ab8dba596b1bfeb5bad645b7fbfe1afdde173c62 [file] [log] [blame]
Werner Lembergfebe3fb2000-03-05 01:14:19 +00001#
2# FreeType 2 build system -- top-level Makefile
3#
4
5
Werner Lemberg59939242006-01-31 20:17:42 +00006# Copyright 1996-2000, 2002, 2006 by
Werner Lemberg47a5f412000-10-17 03:38:43 +00007# David Turner, Robert Wilhelm, and Werner Lemberg.
8#
9# This file is part of the FreeType project, and may only be used, modified,
10# and distributed under the terms of the FreeType project license,
11# LICENSE.TXT. By continuing to use, modify, or distribute this file you
12# indicate that you have read the license and understand and accept it
13# fully.
14
15
David Turner046f7a02000-09-15 22:42:06 +000016# Project names
Werner Lembergfebe3fb2000-03-05 01:14:19 +000017#
David Turner046f7a02000-09-15 22:42:06 +000018PROJECT := freetype
19PROJECT_TITLE := FreeType
Werner Lembergfebe3fb2000-03-05 01:14:19 +000020
Werner Lemberg89df58f2002-06-14 08:09:25 +000021# The variable TOP_DIR holds the path to the topmost directory in the project
Werner Lembergfebe3fb2000-03-05 01:14:19 +000022# engine source hierarchy. If it is not defined, default it to `.'.
David Turnerd2b1f351999-12-16 23:11:37 +000023#
Werner Lemberg89df58f2002-06-14 08:09:25 +000024ifndef TOP_DIR
25 TOP_DIR := .
David Turnerd2b1f351999-12-16 23:11:37 +000026endif
27
Werner Lemberg59939242006-01-31 20:17:42 +000028# The variable OBJ_DIR gives the location where object files and the
29# FreeType library are built.
30#
31ifndef OBJ_DIR
32 OBJ_DIR := $(TOP_DIR)/objs
33endif
34
35
Werner Lemberg89df58f2002-06-14 08:09:25 +000036include $(TOP_DIR)/builds/toplevel.mk
David Turnerd2b1f351999-12-16 23:11:37 +000037
Werner Lembergfebe3fb2000-03-05 01:14:19 +000038# EOF