blob: 3f6a8bec0a65c1127dc5620428b4bddb752ee18f [file] [log] [blame]
Werner Lembergfebe3fb2000-03-05 01:14:19 +00001#
2# FreeType 2 build system -- top-level Makefile
3#
4
5
Werner Lemberg75859972019-02-23 10:07:09 +01006# Copyright (C) 1996-2019 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#
Werner Lemberg8a4de0d2006-02-01 07:52:11 +000018PROJECT := freetype
David Turner046f7a02000-09-15 22:42:06 +000019PROJECT_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 Lemberg8a4de0d2006-02-01 07:52:11 +000024TOP_DIR ?= .
David Turnerd2b1f351999-12-16 23:11:37 +000025
Werner Lemberg59939242006-01-31 20:17:42 +000026# The variable OBJ_DIR gives the location where object files and the
27# FreeType library are built.
28#
Werner Lemberg8a4de0d2006-02-01 07:52:11 +000029OBJ_DIR ?= $(TOP_DIR)/objs
Werner Lemberg59939242006-01-31 20:17:42 +000030
31
Werner Lemberg89df58f2002-06-14 08:09:25 +000032include $(TOP_DIR)/builds/toplevel.mk
David Turnerd2b1f351999-12-16 23:11:37 +000033
Werner Lembergfebe3fb2000-03-05 01:14:19 +000034# EOF