#
-# PostgreSQL top level makefile
+# Postgres-XL top level makefile
#
# GNUmakefile.in
#
$(call recurse,all install,src config)
all:
- +@echo "All of PostgreSQL successfully made. Ready to install."
+ +@echo "All of Postgres-XL successfully made. Ready to install."
docs:
$(MAKE) -C doc all
$(call recurse,world,doc src config contrib,all)
world:
- +@echo "PostgreSQL, contrib, and documentation successfully made. Ready to install."
+ +@echo "Postgres-XL, contrib, and documentation successfully made. Ready to install."
# build src/ before contrib/
world-contrib-recurse: world-src-recurse
$(MAKE) -C doc $@
install:
- +@echo "PostgreSQL installation complete."
+ +@echo "Postgres-XL installation complete."
install-docs:
$(MAKE) -C doc install
$(call recurse,install-world,doc src config contrib,install)
install-world:
- +@echo "PostgreSQL, contrib, and documentation installation complete."
+ +@echo "Postgres-XL, contrib, and documentation installation complete."
# build src/ before contrib/
install-world-contrib-recurse: install-world-src-recurse
-# The PostgreSQL make files exploit features of GNU make that other
+# The Postgres-XL make files exploit features of GNU make that other
# makes do not have. Because it is a common mistake for users to try
# to build Postgres with a different make, we have this make file
# that, as a service, will look for a GNU make and invoke it, or show
# If the user were using GNU make now, this file would not get used
# because GNU make uses a make file named "GNUmakefile" in preference
-# to "Makefile" if it exists. PostgreSQL is shipped with a
+# to "Makefile" if it exists. Postgres-XL is shipped with a
# "GNUmakefile". If the user hasn't run the configure script yet, the
# GNUmakefile won't exist yet, so we catch that case as well.
echo "Using GNU make found at $${GMAKE}"; \
$${GMAKE} $@ ; \
else \
- echo "You must use GNU make to build PostgreSQL." ; \
+ echo "You must use GNU make to build Postgres-XL." ; \
false; \
fi