diff options
| author | Peng Wu <pwu@redhat.com> | 2019-11-28 15:42:26 +0800 |
|---|---|---|
| committer | Peng Wu <pwu@redhat.com> | 2019-11-28 15:42:26 +0800 |
| commit | 50a87b3efe0b10a9ae2ce989c0c0172e2984af32 (patch) | |
| tree | 87f75013414c0e1fa02003758054876b31766061 /utils | |
| parent | 51c551dc9a8b264315100a774720373a0e3744e6 (diff) | |
| download | libpinyin-50a87b3efe0b10a9ae2ce989c0c0172e2984af32.tar.gz libpinyin-50a87b3efe0b10a9ae2ce989c0c0172e2984af32.tar.xz libpinyin-50a87b3efe0b10a9ae2ce989c0c0172e2984af32.zip | |
improve autoconf for libpinyin_internal.a
Diffstat (limited to 'utils')
| -rw-r--r-- | utils/segment/Makefile.am | 6 | ||||
| -rw-r--r-- | utils/storage/Makefile.am | 6 | ||||
| -rw-r--r-- | utils/training/Makefile.am | 6 |
3 files changed, 15 insertions, 3 deletions
diff --git a/utils/segment/Makefile.am b/utils/segment/Makefile.am index 4354107..0d801b6 100644 --- a/utils/segment/Makefile.am +++ b/utils/segment/Makefile.am @@ -23,7 +23,11 @@ INCLUDES = -I$(top_srcdir)/src \ -I$(top_srcdir)/utils \ @GLIB2_CFLAGS@ -LDADD = ../../src/libpinyin_internal.la @GLIB2_LIBS@ +LDADD = \ + ../../src/libpinyin_internal.a \ + ../../src/storage/libstorage.a \ + ../../src/lookup/liblookup.a \ + @GLIB2_LIBS@ noinst_PROGRAMS = spseg ngseg mergeseq diff --git a/utils/storage/Makefile.am b/utils/storage/Makefile.am index f5326a1..3046bcf 100644 --- a/utils/storage/Makefile.am +++ b/utils/storage/Makefile.am @@ -21,7 +21,11 @@ INCLUDES = -I$(top_srcdir)/src \ -I$(top_srcdir)/utils \ @GLIB2_CFLAGS@ -LDADD = ../../src/libpinyin_internal.la @GLIB2_LIBS@ +LDADD = \ + ../../src/libpinyin_internal.a \ + ../../src/storage/libstorage.a \ + ../../src/lookup/liblookup.a \ + @GLIB2_LIBS@ bin_PROGRAMS = gen_binary_files \ import_interpolation diff --git a/utils/training/Makefile.am b/utils/training/Makefile.am index a70945a..d27a792 100644 --- a/utils/training/Makefile.am +++ b/utils/training/Makefile.am @@ -23,7 +23,11 @@ INCLUDES = -I$(top_srcdir)/src \ -I$(top_srcdir)/utils \ @GLIB2_CFLAGS@ -LDADD = ../../src/libpinyin_internal.la @GLIB2_LIBS@ +LDADD = \ + ../../src/libpinyin_internal.a \ + ../../src/storage/libstorage.a \ + ../../src/lookup/liblookup.a \ + @GLIB2_LIBS@ noinst_HEADERS = k_mixture_model.h |
