-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.am
60 lines (52 loc) · 1.43 KB
/
Makefile.am
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
ACLOCAL_AMFLAGS = -I m4
AUTOMAKE_OPTIONS = foreign
SUBDIRS = src/tools data src test doc
CMAKE_FILES = \
cmake/chewing.pc.in \
cmake/config.h.in \
cmake/FindCurses.cmake \
cmake/version.texi.in \
CMakeLists.txt \
$(NULL)
CONTRIB_FILES = \
contrib/python/test.py \
contrib/python/chewing.py \
contrib/simple-select.c \
contrib/Makefile-simple-select \
$(NULL)
EXTRA_DIST = \
autogen.sh \
$(CMAKE_FILES) \
$(CONTRIB_FILES) \
$(NULL)
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = chewing.pc
chewing_includedir = $(includedir)/chewing
chewing_include_HEADERS = \
include/chewingio.h \
include/mod_aux.h \
include/chewing.h \
include/global.h \
$(NULL)
noinst_HEADERS =\
include/internal/chewing-private.h \
include/internal/chewing-utf8-util.h \
include/internal/chewingutil.h \
include/internal/choice-private.h \
include/internal/dict-private.h \
include/internal/global-private.h \
include/internal/memory-private.h \
include/internal/pinyin-private.h \
include/internal/hash-private.h \
include/internal/key2pho-private.h \
include/internal/tree-private.h \
include/internal/userphrase-private.h \
include/internal/zuin-private.h \
$(NULL)
# Maintainer's release target
release:
$(MAKE) distdir
$(top_srcdir)/scripts/git2cl > $(distdir)/ChangeLog
cat $(top_srcdir)/scripts/ChangeLog-svn >> $(distdir)/ChangeLog
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
$(am__remove_distdir)