X-Git-Url: http://git.annexia.org/?a=blobdiff_plain;f=Makefile.am;h=4d3f91fb80d6ca7b54e56978ef7504e91c93cf73;hb=0fe43b4d2de5ac336c2f1635b9a8f60b3ae00370;hp=80e40530ae5b8615b9f60e05e8a1b5254fcc98f0;hpb=5cac23de1963880d8fb3aed4be47ec2894cf520c;p=miniexpect.git diff --git a/Makefile.am b/Makefile.am index 80e4053..4d3f91f 100644 --- a/Makefile.am +++ b/Makefile.am @@ -17,7 +17,7 @@ ACLOCAL_AMFLAGS = -I m4 -EXTRA_DIST = +EXTRA_DIST = miniexpect.3 # The library. @@ -39,12 +39,45 @@ example_sshpass_LDADD = libminiexpect.la # Tests. TESTS = $(check_PROGRAMS) -check_PROGRAMS = test-spawn +check_PROGRAMS = \ + test-spawn \ + test-ls-version -test_spawn_SOURCES = test-spawn.c +test_spawn_SOURCES = test-spawn.c tests.h miniexpect.h test_spawn_CFLAGS = $(PCRE_CFLAGS) -Wall test_spawn_LDADD = libminiexpect.la +test_ls_version_SOURCES = test-ls-version.c tests.h miniexpect.h +test_ls_version_CFLAGS = $(PCRE_CFLAGS) -Wall +test_ls_version_LDADD = libminiexpect.la + +# parallel-tests breaks the ability to put 'valgrind' into +# TESTS_ENVIRONMENT. Hence we have to work around it: +check-valgrind: + for t in $(TESTS); do \ + $(LIBTOOL) --mode=execute $(VG) ./$$t; \ + r=$$?; \ + if [ $$r -ne 0 ]; then exit $$r; fi; \ + done + # Clean. CLEANFILES = *~ + +# Man pages. + +man_MANS = miniexpect.3 + +if HAVE_POD2MAN + +CLEANFILES += miniexpect.3 + +miniexpect.3: miniexpect.pod + $(POD2MAN) \ + --section 3 \ + --release "$(PACKAGE)-$(VERSION)" \ + -c "Library functions" \ + $< > $@-t + mv $@-t $@ + +endif