|
|
|
@ -16,6 +16,7 @@ |
|
|
|
|
ifndef TOP |
|
|
|
|
TOP := . |
|
|
|
|
endif |
|
|
|
|
TOP := $(shell cd $(TOP); pwd) |
|
|
|
|
|
|
|
|
|
DELETE := @RMF@ |
|
|
|
|
DELDIR := @RMDIR@ |
|
|
|
@ -57,15 +58,16 @@ version_info := @version_info@ |
|
|
|
|
|
|
|
|
|
# The directory where all object files are placed. |
|
|
|
|
# |
|
|
|
|
# Note that this is not $(TOP)/obj! |
|
|
|
|
# This lets you build the library in your own directory with something like |
|
|
|
|
# |
|
|
|
|
# set TOP=.../path/to/freetype2/top/dir... |
|
|
|
|
# mkdir obj |
|
|
|
|
# set OBJ_DIR=.../path/to/obj/dir |
|
|
|
|
# make -f $TOP/Makefile setup [options] |
|
|
|
|
# make -f $TOP/Makefile |
|
|
|
|
# |
|
|
|
|
OBJ_DIR := obj |
|
|
|
|
ifndef OBJ_DIR |
|
|
|
|
OBJ_DIR := $(shell cd $(TOP)/obj; pwd) |
|
|
|
|
endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# The directory where all library files are placed. |
|
|
|
|