mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +03:00
Fix relative path references so that make knowns which dependencies refer
to one another. Sort out builddir vs srcdir variable namings. Remove some now obsoleted make variables.
This commit is contained in:
@ -1,21 +1,14 @@
|
||||
# Postgres documentation makefile
|
||||
# Thomas Lockhart
|
||||
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.11 2000/08/31 16:09:16 petere Exp $
|
||||
|
||||
# Not yet generated from configure, so use relative path names for now...
|
||||
PGDOCS= ..
|
||||
SRCDIR= ../../src
|
||||
subdir = doc/src
|
||||
top_builddir = ../..
|
||||
-include $(top_builddir)/src/Makefile.global
|
||||
|
||||
TAR= tar
|
||||
ZIP= gzip
|
||||
TAREXCLUDE= --exclude=Makefile --exclude='*.sgml' --exclude=ref
|
||||
|
||||
# Pick up Makefile.global from the source area
|
||||
# This is the only resource from the code source area and is optional
|
||||
|
||||
ifneq ($(wildcard $(SRCDIR)/Makefile.global), )
|
||||
include $(SRCDIR)/Makefile.global
|
||||
endif
|
||||
|
||||
SRC= admin postgres programmer tutorial user
|
||||
|
||||
TARGETS= $(SRC:%=%.tar.gz)
|
||||
@ -80,5 +73,4 @@ man.tar:
|
||||
# Compressed file
|
||||
|
||||
%.gz: %
|
||||
($(ZIP) -f $<)
|
||||
|
||||
$(GZIP) -f $<
|
||||
|
@ -8,12 +8,17 @@
|
||||
#
|
||||
#
|
||||
# IDENTIFICATION
|
||||
# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.18 2000/08/26 13:08:14 petere Exp $
|
||||
# $Header: /cvsroot/pgsql/doc/src/sgml/Makefile,v 1.19 2000/08/31 16:09:20 petere Exp $
|
||||
#
|
||||
#----------------------------------------------------------------------------
|
||||
|
||||
PGDOCS= ../..
|
||||
SRCDIR= ../../../src
|
||||
# Pick up Makefile.global from the source area
|
||||
# This is the only resource from the code source area and is optional.
|
||||
# Actually, we want this to get Makefile.custom - thomas 1998-03-01
|
||||
subdir = doc/src/sgml
|
||||
top_builddir = ../../..
|
||||
-include $(top_builddir)/src/Makefile.global
|
||||
|
||||
|
||||
# This is where the default stylesheets appear on my linux system.
|
||||
# Probably no need to change this; rather, put definitions
|
||||
@ -46,14 +51,6 @@ D2MSCRIPT= $(D2MDIR)/docbook2man-spec.pl
|
||||
|
||||
TAR= tar
|
||||
|
||||
# Pick up Makefile.global from the source area
|
||||
# This is the only resource from the code source area and is optional.
|
||||
# Actually, we want this to get Makefile.custom - thomas 1998-03-01
|
||||
|
||||
ifneq ($(wildcard $(SRCDIR)/Makefile.global),)
|
||||
include $(SRCDIR)/Makefile.global
|
||||
endif
|
||||
|
||||
# Hmm, made this optional but jade _really_ doesn't like them missing
|
||||
# - thomas 1998-03-01
|
||||
ifneq ($(HDSL), )
|
||||
|
Reference in New Issue
Block a user