| Index: src/tools/Makefile.am
|
| diff --git a/src/tools/Makefile.am b/src/tools/Makefile.am
|
| index 8f9059599279c9dded566e8381094b793ecc7c97..be2cc0e251f50df990cf97699e86279128d8522c 100644
|
| --- a/src/tools/Makefile.am
|
| +++ b/src/tools/Makefile.am
|
| @@ -4,12 +4,17 @@ INCLUDES = \
|
| -I$(top_srcdir)/src \
|
| -I$(top_srcdir)/src/porting_layer/include
|
|
|
| +CC = $(CC_FOR_BUILD)
|
| +CFLAGS = $(CFLAGS_FOR_BUILD)
|
| +
|
| noinst_PROGRAMS = sort_word sort_dic maketree
|
|
|
| -sort_word_LDADD = $(top_builddir)/src/common/libcommon.la
|
| -sort_word_SOURCES = sort_word.c
|
| +sort_word_SOURCES = sort_word.c \
|
| + $(top_builddir)/src/common/key2pho.c \
|
| + $(top_builddir)/src/common/chewing-utf8-util.c
|
|
|
| -sort_dic_LDADD = $(top_builddir)/src/common/libcommon.la
|
| -sort_dic_SOURCES = sort_dic.c
|
| +sort_dic_SOURCES = sort_dic.c \
|
| + $(top_builddir)/src/common/key2pho.c \
|
| + $(top_builddir)/src/common/chewing-utf8-util.c
|
|
|
| maketree_SOURCES = maketree.c
|
|
|