1999-12-17 00:11:37 +01:00
|
|
|
all: exes
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
#
|
|
|
|
# TOP is the directory where the main FreeType source is found,
|
|
|
|
# as well as the 'config.mk' file
|
|
|
|
#
|
2000-01-17 11:56:16 +01:00
|
|
|
# TOP2 is the directory is the top of the demonstration
|
|
|
|
# programs directory
|
|
|
|
#
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
ifndef TOP
|
2000-03-05 02:14:19 +01:00
|
|
|
TOP := ..
|
2000-01-17 11:56:16 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifndef TOP2
|
2000-03-05 02:14:19 +01:00
|
|
|
TOP2 := $(TOP)/demos
|
2000-01-17 11:56:16 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
######################################################################
|
|
|
|
#
|
|
|
|
# MY_CONFIG_MK points to the current "config.mk" to use. It is
|
|
|
|
# defined by default as $(TOP)/config.mk
|
|
|
|
#
|
|
|
|
ifndef CONFIG_MK
|
2000-03-05 02:14:19 +01:00
|
|
|
CONFIG_MK := $(TOP)/config.mk
|
1999-12-17 00:11:37 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
#
|
|
|
|
# Check that we have a working `config.mk' in the above directory.
|
|
|
|
# If not, issue a warning message, then stop there..
|
|
|
|
#
|
2000-01-18 03:07:04 +01:00
|
|
|
ifeq ($(wildcard $(CONFIG_MK)),)
|
2000-03-05 02:14:19 +01:00
|
|
|
no_config_mk := 1
|
1999-12-17 00:11:37 +01:00
|
|
|
endif
|
|
|
|
|
|
|
|
ifdef no_config_mk
|
2000-03-05 02:14:19 +01:00
|
|
|
exes:
|
|
|
|
@echo Please compile the library before the demo programs!
|
|
|
|
clean distclean:
|
|
|
|
@echo "I need \`$(TOP)/config.mk' to do that!"
|
1999-12-17 00:11:37 +01:00
|
|
|
else
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
####################################################################
|
|
|
|
#
|
|
|
|
# Good, now include the `config.mk' in order to know how to build
|
|
|
|
# object files from sources, as well as other things (compiler flags)
|
|
|
|
#
|
|
|
|
include $(CONFIG_MK)
|
|
|
|
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
#
|
|
|
|
# Define a few important variables now
|
|
|
|
#
|
|
|
|
TOP_ := $(TOP)$(SEP)
|
|
|
|
TOP2_ := $(TOP2)$(SEP)
|
|
|
|
SRC_ := $(TOP)$(SEP)src$(SEP)
|
|
|
|
|
|
|
|
BIN_ := bin$(SEP)
|
|
|
|
OBJ_ := obj$(SEP)
|
|
|
|
|
|
|
|
GRAPH_DIR := graph
|
|
|
|
|
|
|
|
ifeq ($(TOP),..)
|
|
|
|
SRC_DIR := src
|
|
|
|
else
|
|
|
|
SRC_DIR := $(TOP2_)src
|
|
|
|
endif
|
|
|
|
|
|
|
|
SRC_DIR_ := $(SRC_DIR)$(SEP)
|
|
|
|
|
|
|
|
FT_INCLUDES := $(BUILD) $(TOP_)config $(TOP_)include $(SRC_)base $(SRC_DIR)
|
|
|
|
TT_INCLUDES := $(SRC_)shared $(SRC_)truetype
|
|
|
|
T1_INCLUDES := $(SRC_)shared $(SRC_)type1
|
|
|
|
|
|
|
|
COMPILE = $(CC) $(CFLAGS) $(INCLUDES:%=$I%)
|
|
|
|
FTLIB := $(TOP_)$(LIB_DIR)$(SEP)$(LIBRARY).$A
|
|
|
|
|
|
|
|
# the default commands used to link the executables. These can
|
|
|
|
# be re-defined for platform-specific stuff..
|
|
|
|
#
|
2000-04-10 14:14:39 +02:00
|
|
|
LINK = $(CC) $T$@ $< $(FTLIB) $(EFENCE) $(LDFLAGS)
|
2000-05-12 17:10:21 +02:00
|
|
|
|
|
|
|
# the program "src/ftstring.c" used the math library which isn't linked
|
|
|
|
# with the program by default on Unix, we thus add it whenever appropriate
|
|
|
|
#
|
|
|
|
ifeq ($(PLATFORM),unix)
|
|
|
|
LINK += -lm
|
|
|
|
endif
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
COMMON_LINK = $(LINK) $(COMMON_OBJ)
|
|
|
|
GRAPH_LINK = $(COMMON_LINK) $(GRAPH_LIB)
|
2000-05-12 17:01:18 +02:00
|
|
|
GRAPH_LINK2 = $(GRAPH_LINK) $(EXTRA_GRAPH_OBJS)
|
2000-03-05 02:14:19 +01:00
|
|
|
|
|
|
|
.PHONY: exes clean distclean
|
|
|
|
|
|
|
|
###################################################################
|
|
|
|
#
|
|
|
|
# Include the rules needed to compile the graphics sub-system.
|
|
|
|
# This will also select which graphics driver to compile to the
|
|
|
|
# sub-system..
|
|
|
|
#
|
|
|
|
include $(GRAPH_DIR)/rules.mk
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
####################################################################
|
|
|
|
#
|
|
|
|
# Detect DOS-like platforms, currently DOS, Win 3.1, Win32 & OS/2
|
|
|
|
#
|
|
|
|
ifneq ($(findstring $(PLATFORM),os2 win16 win32 dos),)
|
|
|
|
DOSLIKE := 1
|
|
|
|
endif
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-01-17 11:56:16 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
###################################################################
|
|
|
|
#
|
|
|
|
# Clean-up rules. Because the `del' command on DOS-like platforms
|
|
|
|
# cannot take a long list of arguments, we simply erase the directory
|
|
|
|
# contents.
|
|
|
|
#
|
|
|
|
ifdef DOSLIKE
|
|
|
|
|
|
|
|
clean_demo:
|
|
|
|
-del obj\*.$O 2> nul
|
|
|
|
-del $(subst /,\,$(TOP2))\src\*.bak 2> nul
|
|
|
|
|
|
|
|
distclean_demo: clean_demo
|
|
|
|
-del obj\*.lib 2> nul
|
|
|
|
-del bin\*.exe 2> nul
|
|
|
|
|
|
|
|
else
|
2000-01-17 11:56:16 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
clean_demo:
|
|
|
|
-$(DELETE) $(OBJ_)*.$O
|
|
|
|
-$(DELETE) $(SRC_)*.bak graph$(SEP)*.bak
|
|
|
|
-$(DELETE) $(SRC_)*~ graph$(SEP)*~
|
|
|
|
|
|
|
|
distclean_demo: clean_demo
|
|
|
|
-$(DELETE) $(EXES:%=$(BIN_)%$E)
|
|
|
|
-$(DELETE) $(GRAPH_LIB)
|
|
|
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
clean: clean_demo
|
|
|
|
distclean: distclean_demo
|
|
|
|
|
|
|
|
####################################################################
|
|
|
|
#
|
|
|
|
# Compute the executable suffix to use, and put it in `E'.
|
|
|
|
# It is ".exe" on DOS-ish platforms, and nothing otherwise.
|
|
|
|
#
|
|
|
|
ifdef DOSLIKE
|
|
|
|
E := .exe
|
|
|
|
else
|
2000-04-10 14:14:39 +02:00
|
|
|
E :=
|
2000-03-05 02:14:19 +01:00
|
|
|
endif
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
###################################################################
|
|
|
|
#
|
|
|
|
# The list of demonstration programs to build.
|
|
|
|
#
|
2000-05-12 17:51:42 +02:00
|
|
|
EXES := ftlint ftview fttimer compos ftstring memtest
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-05-02 13:02:35 +02:00
|
|
|
ifneq ($(findstring $(PLATFORM),os2 unix win32),)
|
2000-03-05 02:14:19 +01:00
|
|
|
EXES += ttdebug
|
|
|
|
endif
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
exes: $(EXES:%=$(BIN_)%$E)
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
INCLUDES := $(FT_INCLUDES)
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
####################################################################
|
|
|
|
#
|
|
|
|
# Rules for compiling object files for text-only demos
|
|
|
|
#
|
|
|
|
COMMON_OBJ := $(OBJ_)common.$O
|
|
|
|
$(COMMON_OBJ): $(SRC_DIR_)common.c
|
|
|
|
ifdef DOSLIKE
|
|
|
|
$(COMPILE) $T$@ $< $DEXPAND_WILDCARDS
|
|
|
|
else
|
|
|
|
$(COMPILE) $T$@ $<
|
|
|
|
endif
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
$(OBJ_)%.$O: $(SRC_DIR_)%.c $(FTLIB)
|
|
|
|
$(COMPILE) $T$@ $<
|
2000-01-17 11:56:16 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
$(OBJ_)ftlint.$O: $(SRC_DIR_)ftlint.c
|
|
|
|
$(COMPILE) $T$@ $<
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-28 13:22:31 +02:00
|
|
|
$(OBJ_)compos.$O: $(SRC_DIR_)compos.c
|
|
|
|
$(COMPILE) $T$@ $<
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
$(OBJ_)fttry.$O: $(SRC_DIR_)fttry.c
|
|
|
|
$(COMPILE) $T$@ $<
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
$(OBJ_)ftview.$O: $(SRC_DIR_)ftview.c $(GRAPH_LIB)
|
|
|
|
$(COMPILE) $(GRAPH_INCLUDES:%=$I%) $T$@ $<
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-28 13:22:31 +02:00
|
|
|
$(OBJ_)ftstring.$O: $(SRC_DIR_)ftstring.c $(GRAPH_LIB)
|
|
|
|
$(COMPILE) $(GRAPH_INCLUDES:%=$I%) $T$@ $<
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
$(OBJ_)fttimer.$O: $(SRC_DIR_)fttimer.c $(GRAPH_LIB)
|
|
|
|
$(COMPILE) $(GRAPH_INCLUDES:%=$I%) $T$@ $<
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-28 13:22:31 +02:00
|
|
|
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# $(OBJ_)ftsbit.$O: $(SRC_DIR)/ftsbit.c $(GRAPH_LIB)
|
|
|
|
# $(COMPILE) $T$@ $<
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
####################################################################
|
|
|
|
#
|
|
|
|
# Special rule to compile the `t1dump' program as it includes
|
|
|
|
# the Type1 source path
|
|
|
|
#
|
|
|
|
$(OBJ_)t1dump.$O: $(SRC_DIR)/t1dump.c
|
|
|
|
$(COMPILE) $(T1_INCLUDES:%=$I%) $T$@ $<
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
####################################################################
|
|
|
|
#
|
|
|
|
# Special rule to compile the `ttdebug' program as it includes
|
|
|
|
# the TrueType source path and needs extra flags for correct keyboard
|
|
|
|
# handling on Unix
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# POSIX TERMIOS: Do not define if you use OLD U*ix like 4.2BSD.
|
|
|
|
#
|
|
|
|
# detect a Unix system
|
|
|
|
ifeq ($(PLATFORM),unix)
|
|
|
|
EXTRAFLAGS = $DUNIX $DHAVE_POSIX_TERMIOS
|
|
|
|
endif
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
$(OBJ_)ttdebug.$O: $(SRC_DIR)/ttdebug.c
|
|
|
|
$(COMPILE) $(TT_INCLUDES:%=$I%) $T$@ $< $(EXTRAFLAGS)
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
####################################################################
|
|
|
|
#
|
|
|
|
# Rules used to link the executables. Note that they could be
|
|
|
|
# over-ridden by system-specific things..
|
|
|
|
#
|
|
|
|
$(BIN_)ftlint$E: $(OBJ_)ftlint.$O $(FTLIB) $(COMMON_OBJ)
|
|
|
|
$(COMMON_LINK)
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-05-12 17:51:42 +02:00
|
|
|
$(BIN_)memtest$E: $(OBJ_)memtest.$O $(FTLIB) $(COMMON_OBJ)
|
|
|
|
$(COMMON_LINK)
|
|
|
|
|
2000-03-28 13:22:31 +02:00
|
|
|
$(BIN_)compos$E: $(OBJ_)compos.$O $(FTLIB) $(COMMON_OBJ)
|
|
|
|
$(COMMON_LINK)
|
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
$(BIN_)fttry$E: $(OBJ_)fttry.$O $(FTLIB)
|
|
|
|
$(LINK)
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
$(BIN_)ftsbit$E: $(OBJ_)ftsbit.$O $(FTLIB)
|
|
|
|
$(LINK)
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
$(BIN_)t1dump$E: $(OBJ_)t1dump.$O $(FTLIB)
|
|
|
|
$(LINK)
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
$(BIN_)ttdebug$E: $(OBJ_)ttdebug.$O $(FTLIB)
|
|
|
|
$(LINK)
|
1999-12-17 00:11:37 +01:00
|
|
|
|
|
|
|
|
2000-05-17 00:36:55 +02:00
|
|
|
$(BIN_)ftview$E: $(OBJ_)ftview.$O $(FTLIB) $(GRAPH_LIB) $(COMMON_OBJ)
|
|
|
|
$(GRAPH_LINK)
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-05-02 13:02:35 +02:00
|
|
|
$(BIN_)ftstring$E: $(OBJ_)ftstring.$O $(FTLIB) $(GRAPH_LIB) $(COMMON_OBJ)
|
|
|
|
$(GRAPH_LINK)
|
2000-03-28 13:22:31 +02:00
|
|
|
|
2000-05-02 13:02:35 +02:00
|
|
|
$(BIN_)fttimer$E: $(OBJ_)fttimer.$O $(FTLIB) $(GRAPH_LIB) $(COMMON_OBJ)
|
|
|
|
$(GRAPH_LINK)
|
1999-12-17 00:11:37 +01:00
|
|
|
|
2000-03-28 13:22:31 +02:00
|
|
|
|
1999-12-17 00:11:37 +01:00
|
|
|
endif
|
2000-01-17 11:56:16 +01:00
|
|
|
|
2000-03-05 02:14:19 +01:00
|
|
|
# EOF
|