summaryrefslogtreecommitdiff
path: root/databases/py-postgresql/files/GNUmakefile.libpq
diff options
context:
space:
mode:
Diffstat (limited to 'databases/py-postgresql/files/GNUmakefile.libpq')
-rw-r--r--databases/py-postgresql/files/GNUmakefile.libpq20
1 files changed, 0 insertions, 20 deletions
diff --git a/databases/py-postgresql/files/GNUmakefile.libpq b/databases/py-postgresql/files/GNUmakefile.libpq
deleted file mode 100644
index 98bc603b323..00000000000
--- a/databases/py-postgresql/files/GNUmakefile.libpq
+++ /dev/null
@@ -1,20 +0,0 @@
-# $NetBSD: GNUmakefile.libpq,v 1.1 2003/01/05 19:26:18 jlam Exp $
-#
-# This GNUmakefile overrides the `all' target of $(libpq_srcdir)/Makefile
-# to be empty if INSTALLED_LIBPQ is defined. This handles the submake
-# targets sprinkled throughout the PostgreSQL Makefiles that execute
-#
-# @$(MAKE) -C $(libpq_builddir) all
-#
-# to ensure that the libpq libraries are built first. If INSTALLED_LIBPQ
-# is defined, then have the `all' target simple return success.
-
-ifdef INSTALLED_LIBPQ
-all:
- @test -f libpq.a || touch libpq.a
-endif
-
-%: force
- @$(MAKE) -f Makefile $@
-
-force: ;