Some major improvements were required to the Makefile to: - compile the demonstration programs in any directory, by using the "TOP" and "CONFIG_MK" environment variables - the graphics drivers have moved from "demos/config/*" to "demos/graph/*" - brain-dead compilers like LCC-Win32 required some changes in the way executables are linked
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
diff --git a/demos/Makefile b/demos/Makefile
index 8c5f526..8d5f172 100644
--- a/demos/Makefile
+++ b/demos/Makefile
@@ -5,9 +5,25 @@ all: exes
# TOP is the directory where the main FreeType source is found,
# as well as the 'config.mk' file
#
+# TOP2 is the directory is the top of the demonstration
+# programs directory
+#
ifndef TOP
-TOP := ..
+TOP := ..
+endif
+
+ifndef TOP2
+TOP2 := $(TOP)/demos
+endif
+
+######################################################################
+#
+# MY_CONFIG_MK points to the current "config.mk" to use. It is
+# defined by default as $(TOP)/config.mk
+#
+ifndef CONFIG_MK
+CONFIG_MK := $(TOP)/config.mk
endif
####################################################################
@@ -15,15 +31,15 @@ endif
# Check that we have a working `config.mk' in the above directory.
# If not, issue a warning message, then stop there..
#
-ifeq ($(wildcard $(TOP)/config.mk),)
+ifeq ($wildcard $(CONFIG_MK),)
no_config_mk := 1
endif
ifdef no_config_mk
exes:
@echo Please compile the library before the demo programs!
-clean distclean:
- @echo "I need \`../config.mk' to do that!"
+ @echo I need "$(TOP)/config.mk" to do that !!
+
else
####################################################################
@@ -31,7 +47,7 @@ else
# 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
+include $(CONFIG_MK)
####################################################################
#
@@ -79,35 +95,55 @@ endif
ifdef DOSLIKE
clean_demo:
- -del obj\*.$O
- -del src\*.bak
+ -del obj\*.$O 2> nul
+ -del $(subst /,\,$(TOP2))\src\*.bak 2> nul
distclean_demo: clean_demo
- -del obj\*.*
- -del bin\*.exe
+ -del obj\*.lib 2> nul
+ -del bin\*.exe 2> nul
else
+
clean_demo:
-$(DELETE) $(OBJ_)*.$O
-$(DELETE) $(SRC_)*.bak graph$(SEP)*.bak
-$(DELETE) $(SRC_)*~ graph$(SEP)*~
+
distclean_demo: clean_demo
- -$(DELETE) $(EXES:%=$(BIN_)%)
+ -$(DELETE) $(EXES:%=$(BIN_)%$E)
-$(DELETE) $(GRAPH_LIB)
endif
clean: clean_demo
distclean: distclean_demo
+####################################################################
+#
+# 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 := $(TOP2_)graph
+
+SRC_DIR := $(TOP2_)src
+SRC_DIR_ := $(SRC_DIR)$(SEP)
-FT_INCLUDES := $(BUILD) $(TOP_)include $(SRC_)base
+
+FT_INCLUDES := $(BUILD) $(TOP_)include $(SRC_)base $(SRC_DIR)
TT_INCLUDES := $(SRC_)shared $(SRC_)truetype
T1_INCLUDES := $(SRC_)shared $(SRC_)type1
-CFLAGS = -c -O0 -g $(INCLUDES:%=$I%) -Wall -W -ansi
-CC := $(CC)
-LINK := $(CC)
-FTLIB := $(LIB_DIR)$(SEP)$(LIBRARY).$A
+COMPILE = $(CC) $(CFLAGS) $(INCLUDES:%=$I%)
+LINK := $(CC)
+FTLIB := $(TOP_)$(LIB_DIR)$(SEP)$(LIBRARY).$A
+LINK = $(CC) $(LINKT)$@ $< $(FTLIB) $(EFENCE)
+COMMON_LINK = $(COMMON_OBJ)
####################################################################
#
@@ -140,28 +176,33 @@ INCLUDES := $(FT_INCLUDES)
# Rules for compiling object files for text-only demos
#
-COMMON_OBJ := $(OBJ_)common.o
+COMMON_OBJ := $(OBJ_)common.$O
$(COMMON_OBJ): $(SRC_DIR_)common.c
- $(CC) $(CFLAGS) $T$@ $<
+ifdef DOSLIKE
+ $(COMPILE) $T$@ $< $DEXPAND_WILDCARDS
+else
+ $(COMPILE) $T$@ $<
+endif
+
$(OBJ_)%.$O: $(SRC_DIR_)%.c $(FTLIB)
- $(CC) $(CFLAGS) $T$@ $<
+ $(COMPILE) $T$@ $<
$(OBJ_)ftlint.$O: $(SRC_DIR_)ftlint.c
- $(CC) $(CFLAGS) $T$@ $<
+ $(COMPILE) $T$@ $<
$(OBJ_)fttry.$O: $(SRC_DIR_)fttry.c
- $(CC) $(CFLAGS) $T$@ $<
+ $(COMPILE) $T$@ $<
$(OBJ_)ftview.$O: $(SRC_DIR_)ftview.c $(GRAPH_LIB)
- $(CC) $(CFLAGS) $(GRAPH_INCLUDES:%=$I%) $T$@ $<
+ $(COMPILE) $(GRAPH_INCLUDES:%=$I%) $T$@ $<
$(OBJ_)fttimer.$O: $(SRC_DIR_)fttimer.c $(GRAPH_LIB)
- $(CC) $(CFLAGS) $(GRAPH_INCLUDES:%=$I%) $T$@ $<
+ $(COMPILE) $(GRAPH_INCLUDES:%=$I%) $T$@ $<
#$(OBJ_)ftsbit.$O: $(SRC_DIR)/ftsbit.c $(GRAPH_LIB)
-# $(CC) $(CFLAGS) $T$@ $<
+# $(COMPILE) $T$@ $<
####################################################################
@@ -170,7 +211,7 @@ $(OBJ_)fttimer.$O: $(SRC_DIR_)fttimer.c $(GRAPH_LIB)
# the Type1 source path
#
$(OBJ_)t1dump.$O: $(SRC_DIR)/t1dump.c
- $(CC) $(CFLAGS) $(T1_INCLUDES:%=$I%) $T$@ $<
+ $(COMPILE) $(T1_INCLUDES:%=$I%) $T$@ $<
####################################################################
@@ -188,7 +229,7 @@ EXTRAFLAGS = $DUNIX $DHAVE_POSIX_TERMIOS
endif
$(OBJ_)ttdebug.$O: $(SRC_DIR)/ttdebug.c
- $(CC) $(CFLAGS) $(TT_INCLUDES:%=$I%) $T$@ $< $(EXTRAFLAGS)
+ $(COMPILE) $(TT_INCLUDES:%=$I%) $T$@ $< $(EXTRAFLAGS)
####################################################################
@@ -197,29 +238,30 @@ $(OBJ_)ttdebug.$O: $(SRC_DIR)/ttdebug.c
# over-ridden by system-specific things..
#
-$(BIN_)ftlint$E: $(OBJ_)ftlint.$O $(FTLIB)
- $(LINK) $(LFLAGS) $T$@ $< $(FTLIB) $(EFENCE)
+$(BIN_)ftlint$E: $(OBJ_)ftlint.$O $(FTLIB) $(COMMON_OBJ)
+ $(COMMON_LINK)
$(BIN_)fttry$E: $(OBJ_)fttry.$O $(FTLIB)
- $(LINK) $(LFLAGS) $T$@ $< $(FTLIB) $(EFENCE)
+ $(LINK)
$(BIN_)ftsbit$E: $(OBJ_)ftsbit.$O $(FTLIB)
- $(LINK) $(LFLAGS) $T$@ $< $(FTLIB) $(EFENCE)
+ $(LINK)
$(BIN_)t1dump$E: $(OBJ_)t1dump.$O $(FTLIB)
- $(LINK) $(LFLAGS) $T$@ $< $(FTLIB) $(EFENCE)
+ $(LINK)
$(BIN_)ttdebug$E: $(OBJ_)ttdebug.$O $(FTLIB)
- $(LINK) $(LFLAGS) $T$@ $< $(FTLIB) $(EFENCE)
+ $(LINK)
$(BIN_)ftview$E: $(OBJ_)ftview.$O $(FTLIB) $(GRAPH_LIB) $(COMMON_OBJ)
- $(LINK) $(LFLAGS) $T$@ $< $(FTLIB) $(GRAPH_LINK) $(COMMON_OBJ) $(EFENCE)
+ $(GRAPH_LINK)
$(BIN_)fttimer$E: $(OBJ_)fttimer.$O $(FTLIB) $(GRAPH_LIB) $(COMMON_OBJ)
- $(LINK) $(LFLAGS) $T$@ $< $(FTLIB) $(GRAPH_LINK) $(EFENCE)
+ $(GRAPH_LINK)
endif
+