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
27d2890b
Commit
27d2890b
authored
23 years ago
by
Peter Eisentraut
Browse files
Options
Downloads
Patches
Plain Diff
Unify the zip rules and variables.
parent
a839258d
No related branches found
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
GNUmakefile.in
+2
-11
2 additions, 11 deletions
GNUmakefile.in
doc/src/Makefile
+1
-10
1 addition, 10 deletions
doc/src/Makefile
src/Makefile.global.in
+11
-2
11 additions, 2 deletions
src/Makefile.global.in
with
14 additions
and
23 deletions
GNUmakefile.in
+
2
−
11
View file @
27d2890b
#
# PostgreSQL top level makefile
#
# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.1
8
2001/0
4/08 17:28:10
petere Exp $
# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.1
9
2001/0
9/17 23:00:27
petere Exp $
#
subdir =
...
...
@@ -55,9 +55,6 @@ distdir := postgresql-$(VERSION)
dummy := =install=
garbage := =* "#"* ."#"* *~* *.orig *.rej core postgresql-*
GZIP := gzip
BZIP2 := bzip2
dist: $(distdir).tar.gz
ifeq ($(split-dist), yes)
dist: postgresql-base-$(VERSION).tar.gz postgresql-docs-$(VERSION).tar.gz postgresql-opt-$(VERSION).tar.gz postgresql-test-$(VERSION).tar.gz
...
...
@@ -89,12 +86,6 @@ postgresql-opt-$(VERSION).tar: distdir
postgresql-test-$(VERSION).tar: distdir
$(TAR) cf $@ $(distdir)/src/test
%.gz: %
$(GZIP) -f --best $<
%.bz2: %
$(BZIP2) -f $<
distdir:
-rm -rf $(distdir)* $(dummy)
for x in `cd $(top_srcdir) && find . -name CVS -prune -o -print`; do \
...
...
@@ -112,7 +103,7 @@ distdir:
distcheck: $(distdir).tar.gz
-rm -rf $(dummy)
mkdir $(dummy)
gzip
-d -c $< | $(TAR) xf -
$(GZIP)
-d -c $< | $(TAR) xf -
install_prefix=`cd $(dummy) && pwd`; \
cd $(distdir) \
&& ./configure --prefix="$$install_prefix"
...
...
This diff is collapsed.
Click to expand it.
doc/src/Makefile
+
1
−
10
View file @
27d2890b
# Postgres documentation makefile
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.2
0
2001/09/1
4
2
0:37:54
petere Exp $
# $Header: /cvsroot/pgsql/doc/src/Makefile,v 1.2
1
2001/09/1
7
2
3:00:27
petere Exp $
subdir
=
doc/src
top_builddir
=
../..
include
$(top_builddir)/src/Makefile.global
TAR
=
tar
ZIP
=
gzip
ZIPSUFFIX
=
gz
TAREXCLUDE
=
--exclude
=
Makefile
--exclude
=
'*.sgml'
--exclude
=
ref
...
...
@@ -65,10 +63,3 @@ postgres.tar:
man.tar
:
$(
MAKE
)
-C
sgml man
$(
TAR
)
-cf
$@
-C
sgml man1 man
$(
sqlmansect_dummy
)
# Generic production rules
# Compressed file
%.$(ZIPSUFFIX)
:
%
$(
ZIP
)
-f
$<
This diff is collapsed.
Click to expand it.
src/Makefile.global.in
+
11
−
2
View file @
27d2890b
# -*-makefile-*-
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.13
7
2001/09/1
6 16:11:09
petere Exp $
# $Header: /cvsroot/pgsql/src/Makefile.global.in,v 1.13
8
2001/09/1
7 23:00:27
petere Exp $
#------------------------------------------------------------------------------
# All PostgreSQL makefiles include this file and use the variables it sets,
...
...
@@ -215,6 +215,9 @@ TAR = @TAR@
WISH
=
@WISH@
XGETTEXT
=
@XGETTEXT@
GZIP
=
gzip
BZIP2
=
bzip2
# Installation.
INSTALL
=
$(
SHELL
)
$(
top_srcdir
)
/config/install-sh
-c
...
...
@@ -329,7 +332,13 @@ STRTOUL = @STRTOUL@
##########################################################################
#
# Global targets
# Global targets and rules
%.gz
:
%
$(
GZIP
)
-f
--best
$<
%.bz2
:
%
$(
BZIP2
)
-f
$<
# Remake Makefile.global from Makefile.global.in if the latter
# changed. In order to trigger this rule, the including file must
...
...
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