summaryrefslogtreecommitdiff
path: root/graphite
diff options
context:
space:
mode:
authorAndre Fischer <af@apache.org>2011-12-16 12:59:55 +0000
committerAndre Fischer <af@apache.org>2011-12-16 12:59:55 +0000
commit1a85ae2b616d939c5beba46e550f7837fc693b2b (patch)
tree84da573ecba70ca173af47cd24b84e6fc88cad55 /graphite
parent54de47df2adf9cac89cd315a2b340c858339c830 (diff)
118674: Made category B code optional and disabled by default.
Diffstat (limited to 'graphite')
-rw-r--r--graphite/makefile.mk17
1 files changed, 11 insertions, 6 deletions
diff --git a/graphite/makefile.mk b/graphite/makefile.mk
index 77cd1df94a4e..d09dea0c579a 100644
--- a/graphite/makefile.mk
+++ b/graphite/makefile.mk
@@ -38,13 +38,20 @@ TARGET=so_graphite
.INCLUDE : settings.mk
.IF "$(SYSTEM_GRAPHITE)" == "YES"
+
all:
@echo "An already available installation of silgraphite should exist on your system."
@echo "Therefore the version provided here does not need to be built in addition."
-.ENDIF
+
+.ELIF "$(ENABLE_GRAPHITE)" != "TRUE"
+
+all:
+ @echo "Support for silgraphite has been disabled. Nothing to do."
+
+.ELSE
# --- Files --------------------------------------------------------
-.IF "$(ENABLE_GRAPHITE)"=="TRUE"
+
TARFILE_NAME=silgraphite-2.3.1
TARFILE_MD5=d35724900f6a4105550293686688bbb3
PATCH_FILES=graphite-2.3.1.patch graphite-2.3.1_debug.patch
@@ -162,10 +169,7 @@ OUTDIR2INC= \
.IF "$(OS)"=="WNT"
OUT2INC=wrappers$/win32$/WinFont.h
.ENDIF
-.ELSE
-dddd:
- @echo Nothing to do
-.ENDIF
+
# --- Targets ------------------------------------------------------
@@ -173,3 +177,4 @@ dddd:
.INCLUDE : target.mk
.INCLUDE : tg_ext.mk
+.ENDIF \ No newline at end of file