blob: c85f6812c23504c39332308a5ce2baa490fd33e3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
SUBDIRS = hangul data tools po
DIST_SUBDIRS = hangul data tools po test doc
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libhangul.pc
EXTRA_DIST = \
config.rpath \
doc/Makefile \
doc/Doxyfile.in \
doc/mainpage.dox \
test/Makefile.am \
test/Makefile.in \
test/hangul.c \
test/hanja.c \
test/test.c
ACLOCAL_AMFLAGS = -I m4
dist-hook:
if test -d .git; then \
git log --name-status --date=iso > $(distdir)/ChangeLog ; \
fi
|