From 0572b575851a7c7055ae10b7c22d072fe685c5be Mon Sep 17 00:00:00 2001 From: Peng Wu Date: Fri, 5 Aug 2011 16:37:28 +0800 Subject: add data subdir --- data/Makefile.am | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 data/Makefile.am (limited to 'data') 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 -- cgit