summaryrefslogtreecommitdiff
path: root/src/Makefile.shlib
diff options
context:
space:
mode:
authorTom Lane2002-09-04 15:45:50 +0000
committerTom Lane2002-09-04 15:45:50 +0000
commit07c67187bf2ce76febd01f69b51d309d54246505 (patch)
treeea6ac04d703e154d215bd64a3a73a096c05a88c2 /src/Makefile.shlib
parentba982373dc6d165b8ba5225bfc1fc758d0f496fe (diff)
Avoid multiple scans of utils/mb/conversion_procs/ subdirectories during
'make install'; there are enough of 'em that this slowed down the make noticeably. Ensure that 'all' is the default make target in all these directories (defaulting to 'make install' is surprising and dangerous IMHO). Fix a couple small typos.
Diffstat (limited to 'src/Makefile.shlib')
-rw-r--r--src/Makefile.shlib11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/Makefile.shlib b/src/Makefile.shlib
index e49c39aa82c..d44920520a5 100644
--- a/src/Makefile.shlib
+++ b/src/Makefile.shlib
@@ -6,7 +6,7 @@
# Copyright (c) 1998, Regents of the University of California
#
# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.61 2002/09/03 17:17:24 momjian Exp $
+# $Header: /cvsroot/pgsql/src/Makefile.shlib,v 1.62 2002/09/04 15:45:50 tgl Exp $
#
#-------------------------------------------------------------------------
@@ -276,8 +276,13 @@ endif # enable_shared
## BUILD
##
-.PHONY: all-lib
-all-lib: lib$(NAME).a $(shlib)
+.PHONY: all-lib all-static-lib all-shared-lib
+
+all-lib: all-static-lib all-shared-lib
+
+all-static-lib: lib$(NAME).a
+
+all-shared-lib: $(shlib)
ifneq ($(PORTNAME), win)