2 # Copyright (C) 2014 Red Hat Inc.
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.
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.
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
18 ACLOCAL_AMFLAGS = -I m4
20 EXTRA_DIST = miniexpect.3
24 lib_LTLIBRARIES = libminiexpect.la
26 libminiexpect_la_SOURCES = miniexpect.c miniexpect.h
27 libminiexpect_la_CFLAGS = $(PCRE2_CFLAGS) -Wall
28 libminiexpect_la_LIBADD = $(PCRE2_LIBS)
29 libminiexpect_la_LDFLAGS = -version-info 0:0:0
33 noinst_PROGRAMS = example-sshpass
35 example_sshpass_SOURCES = example-sshpass.c
36 example_sshpass_CFLAGS = $(PCRE2_CFLAGS) -Wall
37 example_sshpass_LDADD = libminiexpect.la
41 TESTS = $(check_PROGRAMS)
47 test_spawn_SOURCES = test-spawn.c tests.h miniexpect.h
48 test_spawn_CFLAGS = $(PCRE2_CFLAGS) -Wall
49 test_spawn_LDADD = libminiexpect.la
51 test_ls_version_SOURCES = test-ls-version.c tests.h miniexpect.h
52 test_ls_version_CFLAGS = $(PCRE2_CFLAGS) -Wall
53 test_ls_version_LDADD = libminiexpect.la
55 test_multi_match_SOURCES = test-multi-match.c tests.h miniexpect.h
56 test_multi_match_CFLAGS = $(PCRE2_CFLAGS) -Wall
57 test_multi_match_LDADD = libminiexpect.la
59 # parallel-tests breaks the ability to put 'valgrind' into
60 # TESTS_ENVIRONMENT. Hence we have to work around it:
61 check-valgrind: $(TESTS)
62 for t in $(TESTS); do \
63 $(LIBTOOL) --mode=execute $(VG) ./$$t; \
65 if [ $$r -ne 0 ]; then exit $$r; fi; \
74 man_MANS = miniexpect.3
78 CLEANFILES += miniexpect.3
80 miniexpect.3: miniexpect.pod
84 --release "$(PACKAGE)-$(VERSION)" \
85 -c "Library functions" \