From: Behdad Esfahbod Date: Thu, 11 Oct 2007 07:45:26 +0000 (+0000) Subject: Build harfbuzz.c instead of individual source files, to let compiler go X-Git-Tag: 2.0_alpha~7^2~1313 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=61ddbafaaad31ccacde54cad7e60a84abffc0a9f;p=apps%2Fcore%2Fpreloaded%2Fvideo-player.git Build harfbuzz.c instead of individual source files, to let compiler go 2007-10-11 Behdad Esfahbod * pango/opentype/Makefile.am: Build harfbuzz.c instead of individual source files, to let compiler go wild with optimizations! --- diff --git a/src/Makefile.am b/src/Makefile.am index 7c6e0d1..25b0718 100644 --- a/src/Makefile.am +++ b/src/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)