Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
3be86c98
Commit
3be86c98
authored
27 years ago
by
Thomas G. Lockhart
Browse files
Options
Downloads
Patches
Plain Diff
Allow building a source tarball.
Try to generalize the gzip/tar usage for more portability.
parent
25745b6d
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/Makefile
+16
-12
16 additions, 12 deletions
doc/src/Makefile
with
16 additions
and
12 deletions
doc/src/Makefile
+
16
−
12
View file @
3be86c98
...
@@ -5,6 +5,7 @@ PGDOCS= ..
...
@@ -5,6 +5,7 @@ PGDOCS= ..
SRCDIR
=
../../src
SRCDIR
=
../../src
TAR
=
tar
TAR
=
tar
ZIP
=
gzip
TAREXCLUDE
=
--exclude
=
Makefile
--exclude
=
'*.sgml'
TAREXCLUDE
=
--exclude
=
Makefile
--exclude
=
'*.sgml'
# Pick up Makefile.global from the source area
# Pick up Makefile.global from the source area
...
@@ -34,37 +35,40 @@ distclean::
...
@@ -34,37 +35,40 @@ distclean::
all
::
$(TARGETS)
all
::
$(TARGETS)
sources
::
sources
::
(
$(
TAR
)
zcf
sources.tar.gz
sgml graphics
)
$(
MAKE
)
sources.tar.gz
admin.tar.gz
:
sources.tar
:
(
$(
TAR
)
-cf
$@
sgml graphics
)
admin.tar
:
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml admin.html
$(
MAKE
)
-C
sgml admin.html
(
$(
TAR
)
z
cf
$@
$(
TAREXCLUDE
)
-C
sgml
.
-C
..
-C
graphics layout.gif
)
(
$(
TAR
)
-
cf
$@
$(
TAREXCLUDE
)
-C
sgml
.
-C
..
-C
graphics layout.gif
)
postgres.tar
.gz
:
postgres.tar
:
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml postgres.html
$(
MAKE
)
-C
sgml postgres.html
(
$(
TAR
)
z
cf
$@
$(
TAREXCLUDE
)
-C
sgml
.
-C
..
-C
graphics catalogs.gif connections.gif layout.gif
)
(
$(
TAR
)
-
cf
$@
$(
TAREXCLUDE
)
-C
sgml
.
-C
..
-C
graphics catalogs.gif connections.gif layout.gif
)
programmer.tar
.gz
:
programmer.tar
:
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml programmer.html
$(
MAKE
)
-C
sgml programmer.html
(
$(
TAR
)
z
cf
$@
$(
TAREXCLUDE
)
-C
sgml
.
-C
..
-C
graphics catalogs.gif connections.gif
)
(
$(
TAR
)
-
cf
$@
$(
TAREXCLUDE
)
-C
sgml
.
-C
..
-C
graphics catalogs.gif connections.gif
)
tutorial.tar
.gz
:
tutorial.tar
:
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml tutorial.html
$(
MAKE
)
-C
sgml tutorial.html
(
$(
TAR
)
z
cf
$@
$(
TAREXCLUDE
)
-C
sgml
.
-C
..
-C
graphics clientserver.gif
)
(
$(
TAR
)
-
cf
$@
$(
TAREXCLUDE
)
-C
sgml
.
-C
..
-C
graphics clientserver.gif
)
user.tar
.gz
:
user.tar
:
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml clean
$(
MAKE
)
-C
sgml user.html
$(
MAKE
)
-C
sgml user.html
(
$(
TAR
)
z
cf
$@
$(
TAREXCLUDE
)
-C
sgml .
)
(
$(
TAR
)
-
cf
$@
$(
TAREXCLUDE
)
-C
sgml .
)
# Generic production rules
# Generic production rules
# Compressed file
# Compressed file
%.gz
:
%
%.gz
:
%
(
gzip
-f
$<
)
(
$(
ZIP
)
-f
$<
)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment