clean: Remove miniexpect.3 if we have pod2man, otherwise leave it.
[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 = test-spawn
43
44 test_spawn_SOURCES = test-spawn.c
45 test_spawn_CFLAGS = $(PCRE_CFLAGS) -Wall
46 test_spawn_LDADD = libminiexpect.la
47
48 # Clean.
49
50 CLEANFILES = *~
51
52 # Man pages.
53
54 man_MANS = miniexpect.3
55
56 if HAVE_POD2MAN
57
58 CLEANFILES += miniexpect.3
59
60 miniexpect.3: miniexpect.pod
61         $(POD2MAN) \
62           --section 3 \
63           --release "$(PACKAGE)-$(VERSION)" \
64           -c "Library functions" \
65           $< > $@-t
66         mv $@-t $@
67
68 endif