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
d250ead6
Commit
d250ead6
authored
Feb 19, 1997
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a clean target so that the root directory gets cleared of all
the "configure" related files on a make clean
parent
2407a047
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
1 deletion
+24
-1
src/GNUmakefile.in
src/GNUmakefile.in
+24
-1
No files found.
src/GNUmakefile.in
View file @
d250ead6
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
#
#
#
#
# IDENTIFICATION
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.
5 1997/02/04 09:13:56
scrappy Exp $
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.
6 1997/02/19 14:03:28
scrappy Exp $
#
#
#-------------------------------------------------------------------------
#-------------------------------------------------------------------------
...
@@ -23,6 +23,28 @@ SPLIT = @split@
...
@@ -23,6 +23,28 @@ SPLIT = @split@
ETAGS = @etags@
ETAGS = @etags@
XARGS = @xargs@
XARGS = @xargs@
clean:
@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 clean
$(MAKE) -C backend clean
$(MAKE) -C libpq clean
ifeq ($(HAVE_Cplusplus), true)
$(MAKE) -C libpq++ clean
endif
ifeq ($(USE_TCL), true)
$(MAKE) -C libpgtcl clean
endif
$(MAKE) -C bin clean
ifneq ($(wildcard man), )
$(MAKE) -C man clean
endif
rm -f Makefile.global include/config.h GNUmakefile
.DEFAULT all:
.DEFAULT all:
@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 \
...
@@ -63,3 +85,4 @@ BACKUP:
...
@@ -63,3 +85,4 @@ BACKUP:
.PHONY: TAGS
.PHONY: TAGS
.PHONY: BACKUP
.PHONY: BACKUP
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