Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitf6c4d91

Browse files
committed
Didn't *quite* work the way I thought it would...default'd to clean,
not make all :( Fixed...
1 parentd250ead commitf6c4d91

File tree

1 file changed

+25
-1
lines changed

1 file changed

+25
-1
lines changed

‎src/GNUmakefile.in

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
#
99
# IDENTIFICATION
10-
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.6 1997/02/19 14:03:28 scrappy Exp $
10+
# $Header: /cvsroot/pgsql/src/Attic/GNUmakefile.in,v 1.7 1997/02/19 14:14:40 scrappy Exp $
1111
#
1212
#-------------------------------------------------------------------------
1313

@@ -23,6 +23,30 @@ SPLIT = @split@
2323
ETAGS = @etags@
2424
XARGS = @xargs@
2525

26+
all:
27+
@if test $(PORTNAME) = UNDEFINED; then \
28+
echo You must set the PORTNAME value in Makefile.global before \
29+
you can build Postgres. ;\
30+
false ;\
31+
else true;\
32+
fi
33+
$(MAKE) -C utils all
34+
$(MAKE) -C backend all
35+
$(MAKE) -C libpq all
36+
ifeq ($(HAVE_Cplusplus), true)
37+
$(MAKE) -C libpq++ all
38+
endif
39+
ifeq ($(USE_TCL), true)
40+
$(MAKE) -C libpgtcl all
41+
endif
42+
$(MAKE) -C bin all
43+
ifneq ($(wildcard man), )
44+
$(MAKE) -C man all
45+
endif
46+
@if test $@. = all. -o $@. = .; then \
47+
echo All of PostgreSQL is successfully made. Ready to install. ;\
48+
fi
49+
2650
clean:
2751
@if test $(PORTNAME) = UNDEFINED; then \
2852
echo You must set the PORTNAME value in Makefile.global before \

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp