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
f6c4d914
Commit
f6c4d914
authored
28 years ago
by
Marc G. Fournier
Browse files
Options
Downloads
Patches
Plain Diff
Didn't *quite* work the way I thought it would...default'd to clean,
not make all :( Fixed...
parent
d250ead6
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
src/GNUmakefile.in
+25
-1
25 additions, 1 deletion
src/GNUmakefile.in
with
25 additions
and
1 deletion
src/GNUmakefile.in
+
25
−
1
View file @
f6c4d914
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.
6
1997/02/19 14:
03:28
scrappy Exp $
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.
7
1997/02/19 14:
14:40
scrappy Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -23,6 +23,30 @@ SPLIT = @split@
...
@@ -23,6 +23,30 @@ SPLIT = @split@
ETAGS = @etags@
ETAGS = @etags@
XARGS = @xargs@
XARGS = @xargs@
all:
@if test $(PORTNAME) = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \
you can build Postgres. ;\
false ;\
else true;\
fi
$(MAKE) -C utils all
$(MAKE) -C backend all
$(MAKE) -C libpq all
ifeq ($(HAVE_Cplusplus), true)
$(MAKE) -C libpq++ all
endif
ifeq ($(USE_TCL), true)
$(MAKE) -C libpgtcl all
endif
$(MAKE) -C bin all
ifneq ($(wildcard man), )
$(MAKE) -C man all
endif
@if test $@. = all. -o $@. = .; then \
echo All of PostgreSQL is successfully made. Ready to install. ;\
fi
clean:
clean:
@if test $(PORTNAME) = UNDEFINED; then \
@if test $(PORTNAME) = UNDEFINED; then \
echo You must set the PORTNAME value in Makefile.global before \
echo You must set the PORTNAME value in Makefile.global before \
...
...
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