4d3f91fb80d6ca7b54e56978ef7504e91c93cf73
[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
46 test_spawn_SOURCES = test-spawn.c tests.h miniexpect.h
47 test_spawn_CFLAGS = $(PCRE_CFLAGS) -Wall
48 test_spawn_LDADD = libminiexpect.la
49
50 test_ls_version_SOURCES = test-ls-version.c tests.h miniexpect.h
51 test_ls_version_CFLAGS = $(PCRE_CFLAGS) -Wall
52 test_ls_version_LDADD = libminiexpect.la
53
54 # parallel-tests breaks the ability to put 'valgrind' into
55 # TESTS_ENVIRONMENT.  Hence we have to work around it:
56 check-valgrind:
57         for t in $(TESTS); do \
58           $(LIBTOOL) --mode=execute $(VG) ./$$t; \
59           r=$$?; \
60           if [ $$r -ne 0 ]; then exit $$r; fi; \
61         done
62
63 # Clean.
64
65 CLEANFILES = *~
66
67 # Man pages.
68
69 man_MANS = miniexpect.3
70
71 if HAVE_POD2MAN
72
73 CLEANFILES += miniexpect.3
74
75 miniexpect.3: miniexpect.pod
76         $(POD2MAN) \
77           --section 3 \
78           --release "$(PACKAGE)-$(VERSION)" \
79           -c "Library functions" \
80           $< > $@-t
81         mv $@-t $@
82
83 endif