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
fc21f3c9
Commit
fc21f3c9
authored
24 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
Rearrange distribution split as discussed on -hackers.
parent
cdbf1762
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
GNUmakefile.in
+18
-9
18 additions, 9 deletions
GNUmakefile.in
with
18 additions
and
9 deletions
GNUmakefile.in
+
18
−
9
View file @
fc21f3c9
#
#
# PostgreSQL top level makefile
# PostgreSQL top level makefile
#
#
# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.1
7
2001/0
2/10 02:31:25 tgl
Exp $
# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.1
8
2001/0
4/08 17:28:10 petere
Exp $
#
#
subdir =
subdir =
...
@@ -60,7 +60,7 @@ BZIP2 := bzip2
...
@@ -60,7 +60,7 @@ BZIP2 := bzip2
dist: $(distdir).tar.gz
dist: $(distdir).tar.gz
ifeq ($(split-dist), yes)
ifeq ($(split-dist), yes)
dist:
$(distdir).base.tar.gz $(distdir).docs.tar.gz $(distdir).support.tar.gz $(distdir).test
.tar.gz
dist:
postgresql-base-$(VERSION).tar.gz postgresql-docs-$(VERSION).tar.gz postgresql-opt-$(VERSION).tar.gz postgresql-test-$(VERSION)
.tar.gz
endif
endif
dist:
dist:
-rm -rf $(distdir)
-rm -rf $(distdir)
...
@@ -68,17 +68,25 @@ dist:
...
@@ -68,17 +68,25 @@ dist:
$(distdir).tar: distdir
$(distdir).tar: distdir
$(TAR) chf $@ $(distdir)
$(TAR) chf $@ $(distdir)
$(distdir).base.tar: distdir
opt_files := src/backend/utils/mb contrib/retep build.xml \
$(TAR) -c $(addprefix --exclude $(distdir)/, doc src/test src/interfaces src/bin) \
src/tools src/corba src/data src/tutorial \
$(addprefix src/bin/, pgaccess pgtclsh pg_encoding) \
$(addprefix src/interfaces/, odbc libpq++ libpgtcl perl5 python jdbc) \
$(addprefix src/pl/, plperl tcl)
docs_files := doc/postgres.tar.gz doc/src doc/TODO.detail doc/internals.ps
postgresql-base-$(VERSION).tar: distdir
$(TAR) -c $(addprefix --exclude $(distdir)/, $(docs_files) $(opt_files) src/test) \
-f $@ $(distdir)
-f $@ $(distdir)
$(distdir).docs
.tar: distdir
postgresql-docs-$(VERSION)
.tar: distdir
$(TAR) cf $@ $(
distdir)/doc
$(TAR) cf $@ $(
addprefix $(distdir)/, $(docs_files))
$(distdir).support
.tar: distdir
postgresql-opt-$(VERSION)
.tar: distdir
$(TAR) cf $@ $(
distdir)/src/interfaces $(distdir)/src/bin
$(TAR) cf $@ $(
addprefix $(distdir)/, $(opt_files))
$(distdir).test
.tar: distdir
postgresql-test-$(VERSION)
.tar: distdir
$(TAR) cf $@ $(distdir)/src/test
$(TAR) cf $@ $(distdir)/src/test
%.gz: %
%.gz: %
...
@@ -121,3 +129,4 @@ distcheck: $(distdir).tar.gz
...
@@ -121,3 +129,4 @@ distcheck: $(distdir).tar.gz
@echo "Distribution integrity checks out."
@echo "Distribution integrity checks out."
.PHONY: dist distdir distcheck
.PHONY: dist distdir distcheck
unexport split-dist
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