| OLD | NEW |
| 1 INCLUDES = \ | 1 INCLUDES = \ |
| 2 -I$(top_srcdir)/include \ | 2 -I$(top_srcdir)/include \ |
| 3 -I$(top_srcdir)/include/internal \ | 3 -I$(top_srcdir)/include/internal \ |
| 4 -I$(top_srcdir)/src \ | 4 -I$(top_srcdir)/src \ |
| 5 -I$(top_srcdir)/src/porting_layer/include | 5 -I$(top_srcdir)/src/porting_layer/include |
| 6 | 6 |
| 7 CC = $(CC_FOR_BUILD) |
| 8 CFLAGS = $(CFLAGS_FOR_BUILD) |
| 9 |
| 7 noinst_PROGRAMS = sort_word sort_dic maketree | 10 noinst_PROGRAMS = sort_word sort_dic maketree |
| 8 | 11 |
| 9 sort_word_LDADD = $(top_builddir)/src/common/libcommon.la | 12 sort_word_SOURCES = sort_word.c \ |
| 10 sort_word_SOURCES = sort_word.c | 13 » » $(top_builddir)/src/common/key2pho.c \ |
| 14 » » $(top_builddir)/src/common/chewing-utf8-util.c |
| 11 | 15 |
| 12 sort_dic_LDADD = $(top_builddir)/src/common/libcommon.la | 16 sort_dic_SOURCES = sort_dic.c \ |
| 13 sort_dic_SOURCES = sort_dic.c | 17 » » $(top_builddir)/src/common/key2pho.c \ |
| 18 » » $(top_builddir)/src/common/chewing-utf8-util.c |
| 14 | 19 |
| 15 maketree_SOURCES = maketree.c | 20 maketree_SOURCES = maketree.c |
| OLD | NEW |