mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-05 19:09:58 +08:00
Didn't *quite* work the way I thought it would...default'd to clean,
not make all :( Fixed...
This commit is contained in:
parent
d250ead654
commit
f6c4d9142a
@ -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@
|
|||||||
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 \
|
||||||
|
Loading…
Reference in New Issue
Block a user