diff options
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/regress/GNUmakefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/test/regress/GNUmakefile b/src/test/regress/GNUmakefile index a3842542cdc..33883891471 100644 --- a/src/test/regress/GNUmakefile +++ b/src/test/regress/GNUmakefile @@ -6,7 +6,7 @@ # Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group # Portions Copyright (c) 1994, Regents of the University of California # -# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.53 2005/11/01 15:09:11 adunstan Exp $ +# $PostgreSQL: pgsql/src/test/regress/GNUmakefile,v 1.54 2005/11/28 12:03:56 alvherre Exp $ # #------------------------------------------------------------------------- @@ -55,6 +55,12 @@ pg_regress: pg_regress.sh GNUmakefile $(top_builddir)/src/Makefile.global $< >$@ chmod a+x $@ +install: pg_regress + $(INSTALL_SCRIPT) pg_regress $(DESTDIR)$(pgxsdir)/$(subdir)/pg_regress + +uninstall: + rm -f $(DESTDIR)$(pgxsdir)/$(subdir)/pg_regress + # Build dynamically-loaded object file for CREATE FUNCTION ... LANGUAGE 'C'. |