blob: 684608deae7cebd020a63a9bd652a1aadba2fa5d [file] [log] [blame]
Jeongik Cha1199caa2021-07-20 12:32:58 +09001
2ACLOCAL_AMFLAGS = -I m4
3
4SUBDIRS = lib
5
6if BUILDDOC
7SUBDIRS += doc
8endif
9
10if BUILDEXAMPLES
11SUBDIRS += examples
12endif
13
14if BUILDTESTS
15SUBDIRS += tinytest tests
16endif
17
18.PHONY: dist-rpm
19
20dist-rpm: distcheck
21 rpmbuild -ta $(distdir).tar.gz
22
23EXTRA_DIST = \
24 m4/*.m4 \
25 *.sln \
26 test.cfg \
27 TODO \
28 debian/changelog \
29 debian/compat \
30 debian/control \
31 debian/copyright \
32 debian/docs \
33 debian/libconfig++9-dev.install \
34 debian/libconfig++9.install \
35 debian/libconfig9-dev.docs \
36 debian/libconfig9-dev.install \
37 debian/libconfig9.info \
38 debian/libconfig9.install \
39 debian/rules \
40 debian/shlibs \
41 debian/watch \
42 libconfig.spec \
43 contrib
44
45dist-hook:
46 rm -rf `find $(distdir)/contrib -name .svn`
47
48test:
49 cd tests && ./libconfig_tests