diff options
author | Peng Wu <alexepico@gmail.com> | 2011-08-05 14:13:21 +0800 |
---|---|---|
committer | Peng Wu <alexepico@gmail.com> | 2011-08-05 14:13:21 +0800 |
commit | a1b9f96c6878d06c5b803ccdcea26f5fcc971365 (patch) | |
tree | f7e0c3ac4fc15d5f7b8e52999f03a7f9edbb6c35 /src/storage/Makefile.am | |
parent | d593958f5b3019c44a7bb6d7c664df12e0478d0e (diff) | |
download | libpinyin-a1b9f96c6878d06c5b803ccdcea26f5fcc971365.tar.gz libpinyin-a1b9f96c6878d06c5b803ccdcea26f5fcc971365.tar.xz libpinyin-a1b9f96c6878d06c5b803ccdcea26f5fcc971365.zip |
make libpinyin installable
Diffstat (limited to 'src/storage/Makefile.am')
-rw-r--r-- | src/storage/Makefile.am | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/storage/Makefile.am b/src/storage/Makefile.am index 8c10cdf..f508b82 100644 --- a/src/storage/Makefile.am +++ b/src/storage/Makefile.am @@ -19,7 +19,9 @@ INCLUDES = -I$(top_srcdir)/src/include \ -I$(top_srcdir)/src/storage \ @GLIB2_CPPFLAGS@ -noinst_HEADERS = pinyin_large_table.h \ +libpinyinincludedir = $(includedir)/libpinyin-@LIBPINYIN_BINARY_VERSION@ + +libpinyininclude_HEADERS= pinyin_large_table.h \ pinyin_base.h \ pinyin_phrase.h \ phrase_index.h \ @@ -31,6 +33,8 @@ noinst_HEADERS = pinyin_large_table.h \ noinst_LTLIBRARIES = libstorage.la +libstorage_la_CXXFLAGS = "-fPIC" + libstorage_la_LDFLAGS = -static libstorage_la_SOURCES = pinyin_base.cpp \ |