summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2000-11-17 00:08:57 +0000
committerTom Lane2000-11-17 00:08:57 +0000
commit55d5b58538f1adbba7a7b1a1e7ad0b2a665f1f45 (patch)
treef57c3766e0ef967664e2e48b88ea90faedd76556
parent9a561357e217cc5625a7c8f77e0133a608f712ae (diff)
GNUmakefile failed to provide a way to invoke perl Makefile's
'make test' target.
-rw-r--r--src/interfaces/perl5/GNUmakefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/interfaces/perl5/GNUmakefile b/src/interfaces/perl5/GNUmakefile
index d6be1c1e9b9..c82ae59f083 100644
--- a/src/interfaces/perl5/GNUmakefile
+++ b/src/interfaces/perl5/GNUmakefile
@@ -4,7 +4,7 @@
# Makefile according to its own ideas and then invoke the rules from
# that file.
#
-# $Header: /cvsroot/pgsql/src/interfaces/perl5/Attic/GNUmakefile,v 1.4 2000/11/16 16:21:55 petere Exp $
+# $Header: /cvsroot/pgsql/src/interfaces/perl5/Attic/GNUmakefile,v 1.5 2000/11/17 00:08:57 tgl Exp $
subdir = src/interfaces/perl5
top_builddir = ../../..
@@ -21,6 +21,9 @@ Makefile: Makefile.PL
libpq-all:
$(MAKE) -C $(libpq_builddir) all
+test: Makefile
+ $(MAKE) -f $< test
+
# The klugery here is to ensure that the perl5 shared library gets
# built with the correct path to the installed location of libpq
# during `make install', but is built against the local tree during