Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
e27cafaa
Commit
e27cafaa
authored
Mar 01, 1998
by
Thomas G. Lockhart
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Allow installation of documentation packages.
parent
13b2557d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
71 additions
and
0 deletions
+71
-0
doc/Makefile
doc/Makefile
+71
-0
No files found.
doc/Makefile
0 → 100644
View file @
e27cafaa
#----------------------------------------------------------------------------
#
# Makefile
# Postgres documentation installation makefile
# Thomas Lockhart
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/doc/Makefile,v 1.4 1998/03/01 20:37:44 thomas Exp $
#
#----------------------------------------------------------------------------
PGDOCS
=
.
SRCDIR
=
../src
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), )
HTMLOPTS
=
-d
$(HDSL)
endif
ifneq
($(PDSL), )
PRINTOPTS
=
-d
$(PDSL)
endif
MODULES
=
admin postgres programmer tutorial user
TARGETS
=
$(MODULES:%=%.html)
.PRECIOUS
:
postgres.tex postgres.dvi
.PHONY
:
install all clean distclean
install
::
$(MAKE)
all
all
::
$(MODULES)
clean
::
rm
-rf
$(MODULES)
distclean
::
$(MAKE)
clean
#
# Generic production rules
#
# Unpack tar file
# Put into area pointed to by $(PGDOCS).
## Make a local file to keep track of dependencies,
## if $(PGDOCS) points somewhere else.
## Disable this for now - thomas 1998-03-01
# Remove the contents of the target directory
# to replace symlinks - thomas 1998-03-01
%
:
%.tar.gz
rm
-rf
./
$@
$(PGDOCS)
/
$*
if
test
!
-d
$(PGDOCS)
/
$*
;
then
mkdir
$(PGDOCS)
/
$*
;
fi
$(TAR)
zxf
$<
-C
$(PGDOCS)
/
$*
# touch ./$*
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment