1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

To fix the perpetually broken makefiles in the contrib tree, I have

written a generic framework of rules that the contrib makefiles can
use instead of writing their own each time.  You only need to set a few
variables and off you go.
This commit is contained in:
Peter Eisentraut
2001-09-06 10:49:30 +00:00
parent 22ae53d4cd
commit 17cc78ef01
32 changed files with 394 additions and 1061 deletions

View File

@ -1,18 +1,9 @@
#
# $Header: /cvsroot/pgsql/contrib/tips/Attic/Makefile,v 1.4 2000/07/09 13:13:43 petere Exp $
#
# $Header: /cvsroot/pgsql/contrib/tips/Attic/Makefile,v 1.5 2001/09/06 10:49:30 petere Exp $
subdir = contrib/tips
top_builddir = ../..
include ../../src/Makefile.global
include $(top_builddir)/src/Makefile.global
all:
DOCS = README.apachelog
install: installdirs
$(INSTALL_DATA) README.apachelog $(docdir)/contrib
installdirs:
$(mkinstalldirs) $(docdir)/contrib
uninstall:
rm -f $(docdir)/contrib/README.apachelog
include $(top_srcdir)/contrib/contrib-global.mk