mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-02-22 09:21:45 -05:00
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1333 f882894a-f735-0410-b71e-b25c423dba1c
23 lines
548 B
Makefile
23 lines
548 B
Makefile
|
|
noinst_PROGRAMS = @EXTRA_TEST@
|
|
|
|
# These two lines support "make check", but we use "make test"
|
|
TESTS = @EXTRA_TEST@
|
|
check_PROGRAMS = @EXTRA_TEST@
|
|
|
|
INCLUDES = -I$(top_srcdir)/lib -I$(top_srcdir)/intl
|
|
|
|
EXTRA_PROGRAMS = test_utils
|
|
|
|
EXTRA_DIST = test_utils.t
|
|
|
|
LIBS = @LIBINTL@
|
|
|
|
test_utils_SOURCES = test_utils.c
|
|
test_utils_CFLAGS = -g -I..
|
|
test_utils_LDFLAGS = -L/usr/local/lib -ltap
|
|
test_utils_LDADD = ../utils.o
|
|
|
|
test: ${noinst_PROGRAMS}
|
|
perl -MTest::Harness -e '$$Test::Harness::switches=""; runtests(map {$$_ .= ".t"} @ARGV)' $(EXTRA_PROGRAMS)
|
|
|