diff options
author | Peng Wu <alexepico@gmail.com> | 2011-08-05 16:37:28 +0800 |
---|---|---|
committer | Peng Wu <alexepico@gmail.com> | 2011-08-05 16:46:57 +0800 |
commit | 0572b575851a7c7055ae10b7c22d072fe685c5be (patch) | |
tree | 50d805a5419833675e5b608181ca70956be51e6b /data/Makefile.am | |
parent | 237bd7b076ec9df92e6fdf021a34bf6ef811ae1b (diff) | |
download | libpinyin-0572b575851a7c7055ae10b7c22d072fe685c5be.tar.gz libpinyin-0572b575851a7c7055ae10b7c22d072fe685c5be.tar.xz libpinyin-0572b575851a7c7055ae10b7c22d072fe685c5be.zip |
add data subdir
Diffstat (limited to 'data/Makefile.am')
-rw-r--r-- | data/Makefile.am | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100644 index 0000000..a9dab88 --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1,43 @@ +## Makefile.am -- Process this file with automake to produce Makefile.in +## Copyright (C) 2011 Peng Wu +## +## This program is free software; you can redistribute it and/or modify +## it under the terms of the GNU General Public License as published by +## the Free Software Foundation; either version 2, or (at your option) +## any later version. +## +## This program is distributed in the hope that it will be useful, +## but WITHOUT ANY WARRANTY; without even the implied warranty of +## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +## GNU General Public License for more details. +## +## You should have received a copy of the GNU General Public License +## along with this program; if not, write to the Free Software +## Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + + +textual_model_data = interpolation.text \ + gb_char.table gbk_char.table + +binary_model_data = gb_char.bin gbk_char.bin \ + phrase_index.bin pinyin_index.bin \ + bigram.db + + +MAINTAINERCLEANFILES = Makefile.in + +EXTRA_DIST = $(textual_model_data) \ + $(binary_model_data) + +libpinyin_db_DATA = $(binary_model_data) + +libpinyin_dbdir = $(pkgdatadir)/data + +CLEANFILES = $(binary_model_data) + +build-data: $(textual_model_data) + $(RM) $(binary_model_data) + cd ../utils/storage ; ./gen_binary_files ; cd - + cd ../utils/storage ; ./import_interpolation < ../../data/interpolation.text ; cd - + +$(binary_model_data): build-data |