summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBehdad Esfahbod <behdad@gnome.org>2007-10-11 07:45:26 +0000
committerBehdad Esfahbod <behdad@src.gnome.org>2007-10-11 07:45:26 +0000
commit3739b7e3448f3277eed7c027905bf602e5afb404 (patch)
tree3bc17220d38c3d0c606126fab18b2bc8d87e7ab4
parent2fc0e10abf222a487aac51759b0de2abf8b8d086 (diff)
downloadpango-3739b7e3448f3277eed7c027905bf602e5afb404.tar.gz
Build harfbuzz.c instead of individual source files, to let compiler go
2007-10-11 Behdad Esfahbod <behdad@gnome.org> * pango/opentype/Makefile.am: Build harfbuzz.c instead of individual source files, to let compiler go wild with optimizations! svn path=/trunk/; revision=2440
-rw-r--r--ChangeLog5
-rw-r--r--pango/opentype/Makefile.am9
2 files changed, 10 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index c8c7cb92..512a717c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
2007-10-11 Behdad Esfahbod <behdad@gnome.org>
+ * pango/opentype/Makefile.am: Build harfbuzz.c instead of individual
+ source files, to let compiler go wild with optimizations!
+
+2007-10-11 Behdad Esfahbod <behdad@gnome.org>
+
* pango/opentype/harfbuzz.c: Same here.
2007-10-11 Behdad Esfahbod <behdad@gnome.org>
diff --git a/pango/opentype/Makefile.am b/pango/opentype/Makefile.am
index 7c6e0d1d..25b0718f 100644
--- a/pango/opentype/Makefile.am
+++ b/pango/opentype/Makefile.am
@@ -6,6 +6,10 @@ INCLUDES = \
noinst_LTLIBRARIES = libharfbuzz-1.la
MAINSOURCES = \
+ harfbuzz.c
+
+# included from harfbuzz.c
+INCLUDEDSOURCES = \
ftglue.c \
harfbuzz-buffer.c \
harfbuzz-gdef.c \
@@ -13,8 +17,6 @@ MAINSOURCES = \
harfbuzz-gsub.c \
harfbuzz-open.c
-EXTRA_SOURCES = harfbuzz.c
-
PUBLICHEADERS = \
harfbuzz.h \
harfbuzz-buffer.h \
@@ -55,5 +57,4 @@ EXTRA_DIST = \
COPYING.FTL \
COPYING.GPL \
COPYING \
- $(EXTRA_SOURCES)
-
+ $(INCLUDED_SOURCES)