2000-06-07 02:01:15 +04:00
|
|
|
#
|
|
|
|
# PostgreSQL top level makefile
|
|
|
|
#
|
2000-07-18 02:31:59 +04:00
|
|
|
# $Header: /cvsroot/pgsql/GNUmakefile.in,v 1.8 2000/07/17 22:31:56 petere Exp $
|
2000-06-07 02:01:15 +04:00
|
|
|
#
|
|
|
|
|
2000-06-28 22:30:16 +04:00
|
|
|
subdir =
|
2000-06-07 02:01:15 +04:00
|
|
|
top_builddir = .
|
2000-06-28 22:30:16 +04:00
|
|
|
include src/Makefile.global
|
2000-06-07 02:01:15 +04:00
|
|
|
|
|
|
|
all:
|
2000-07-18 02:31:59 +04:00
|
|
|
$(MAKE) -C doc all
|
2000-06-08 03:09:18 +04:00
|
|
|
$(MAKE) -C src all
|
2000-06-07 02:01:15 +04:00
|
|
|
@echo "All of PostgreSQL successfully made. Ready to install."
|
|
|
|
|
|
|
|
install:
|
2000-07-18 02:31:59 +04:00
|
|
|
$(MAKE) -C doc install
|
2000-06-08 03:09:18 +04:00
|
|
|
$(MAKE) -C src install
|
2000-06-07 02:01:15 +04:00
|
|
|
@cat $(srcdir)/register.txt
|
|
|
|
|
2000-07-18 02:31:59 +04:00
|
|
|
installdirs uninstall clean:
|
|
|
|
$(MAKE) -C doc $@
|
2000-06-28 22:30:16 +04:00
|
|
|
$(MAKE) -C src $@
|
|
|
|
|
2000-07-18 02:31:59 +04:00
|
|
|
# Important: distclean `doc' before `src', otherwise Makefile.global
|
|
|
|
# will be gone too soon.
|
2000-06-28 22:30:16 +04:00
|
|
|
distclean maintainer-clean:
|
2000-07-18 02:31:59 +04:00
|
|
|
-$(MAKE) -C doc $@
|
2000-06-28 22:30:16 +04:00
|
|
|
-$(MAKE) -C src $@
|
2000-06-07 02:01:15 +04:00
|
|
|
-rm -f config.cache config.log config.status GNUmakefile
|
|
|
|
|
|
|
|
|
2000-06-10 22:02:12 +04:00
|
|
|
GNUmakefile: GNUmakefile.in $(top_builddir)/config.status
|
|
|
|
CONFIG_FILES=$@ CONFIG_HEADERS= ./config.status
|
|
|
|
|
|
|
|
|
2000-06-14 22:18:01 +04:00
|
|
|
# These dependencies are risky because both the target and the sources
|
|
|
|
# are in CVS and CVS doesn't preserve timestamps, thus leading to
|
|
|
|
# unnecessary reruns of these rules.
|
2000-06-10 22:02:12 +04:00
|
|
|
|
2000-06-14 22:18:01 +04:00
|
|
|
AUTOCONF = autoconf
|
2000-06-11 22:43:52 +04:00
|
|
|
|
2000-06-14 22:18:01 +04:00
|
|
|
# Only use this rule if you actually said `make configure'.
|
|
|
|
ifeq ($(MAKECMDGOALS),configure)
|
|
|
|
$(top_srcdir)/configure: $(top_srcdir)/configure.in $(top_srcdir)/aclocal.m4
|
|
|
|
cd $(top_srcdir) && $(AUTOCONF)
|
|
|
|
endif
|
2000-06-11 22:43:52 +04:00
|
|
|
|
2000-06-14 22:18:01 +04:00
|
|
|
# This one we can leave unprotected because by default nothing depends
|
|
|
|
# on aclocal.m4. This rule is only invoked if you say `make
|
|
|
|
# aclocal.m4' or `make configure'.
|
|
|
|
$(top_srcdir)/aclocal.m4: $(wildcard $(top_srcdir)/config/*.m4)
|
|
|
|
cat $^ > $@
|