Small fix to documentation.
[miniexpect.git] / Makefile.am
1 # miniexpect
2 # Copyright (C) 2014 Red Hat Inc.
3 #
4 # This library is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU Lesser General Public
6 # License as published by the Free Software Foundation; either
7 # version 2 of the License, or (at your option) any later version.
8 #
9 # This library is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12 # Lesser General Public License for more details.
13 #
14 # You should have received a copy of the GNU Lesser General Public
15 # License along with this library; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
17
18 ACLOCAL_AMFLAGS = -I m4
19
20 EXTRA_DIST = miniexpect.3
21
22 # The library.
23
24 lib_LTLIBRARIES = libminiexpect.la
25
26 libminiexpect_la_SOURCES = miniexpect.c miniexpect.h
27 libminiexpect_la_CFLAGS = $(PCRE_CFLAGS) -Wall
28 libminiexpect_la_LIBADD = $(PCRE_LIBS)
29 libminiexpect_la_LDFLAGS = -version-info 0:0:0
30
31 # Examples.
32
33 noinst_PROGRAMS = example-sshpass
34
35 example_sshpass_SOURCES = example-sshpass.c
36 example_sshpass_CFLAGS = $(PCRE_CFLAGS) -Wall
37 example_sshpass_LDADD = libminiexpect.la
38
39 # Tests.
40
41 TESTS = $(check_PROGRAMS)
42 check_PROGRAMS = \
43         test-spawn \
44         test-ls-version \
45         test-multi-match
46
47 test_spawn_SOURCES = test-spawn.c tests.h miniexpect.h
48 test_spawn_CFLAGS = $(PCRE_CFLAGS) -Wall
49 test_spawn_LDADD = libminiexpect.la
50
51 test_ls_version_SOURCES = test-ls-version.c tests.h miniexpect.h
52 test_ls_version_CFLAGS = $(PCRE_CFLAGS) -Wall
53 test_ls_version_LDADD = libminiexpect.la
54
55 test_multi_match_SOURCES = test-multi-match.c tests.h miniexpect.h
56 test_multi_match_CFLAGS = $(PCRE_CFLAGS) -Wall
57 test_multi_match_LDADD = libminiexpect.la
58
59 # parallel-tests breaks the ability to put 'valgrind' into
60 # TESTS_ENVIRONMENT.  Hence we have to work around it:
61 check-valgrind:
62         for t in $(TESTS); do \
63           $(LIBTOOL) --mode=execute $(VG) ./$$t; \
64           r=$$?; \
65           if [ $$r -ne 0 ]; then exit $$r; fi; \
66         done
67
68 # Clean.
69
70 CLEANFILES = *~
71
72 # Man pages.
73
74 man_MANS = miniexpect.3
75
76 if HAVE_POD2MAN
77
78 CLEANFILES += miniexpect.3
79
80 miniexpect.3: miniexpect.pod
81         $(POD2MAN) \
82           --section 3 \
83           --release "$(PACKAGE)-$(VERSION)" \
84           -c "Library functions" \
85           $< > $@-t
86         mv $@-t $@
87
88 endif