11#
22# PostgreSQL top level makefile
33#
4- # $PostgreSQL: pgsql/GNUmakefile.in,v 1.46 2007/02/09 15:55:57 petere Exp $
4+ # $PostgreSQL: pgsql/GNUmakefile.in,v 1.47 2008/03/18 16:24:50 petere Exp $
55#
66
77subdir =
@@ -44,11 +44,11 @@ clean:
4444# Important: distclean `src' last, otherwise Makefile.global
4545# will be gone too soon.
4646distclean maintainer-clean:
47- - $(MAKE) -C doc $@
48- - $(MAKE) -C contrib $@
49- - $(MAKE) -C config $@
50- - $(MAKE) -C src $@
51- - rm -f config.cache config.log config.status GNUmakefile
47+ $(MAKE) -C doc $@
48+ $(MAKE) -C contrib $@
49+ $(MAKE) -C config $@
50+ $(MAKE) -C src $@
51+ rm -f config.cache config.log config.status GNUmakefile
5252# Garbage from autoconf:
5353@rm -rf autom4te.cache/
5454
@@ -72,7 +72,7 @@ ifeq ($(split-dist), yes)
7272dist: postgresql-base-$(VERSION).tar.gz postgresql-docs-$(VERSION).tar.gz postgresql-opt-$(VERSION).tar.gz postgresql-test-$(VERSION).tar.gz
7373endif
7474dist:
75- - rm -rf $(distdir)
75+ rm -rf $(distdir)
7676
7777$(distdir).tar: distdir
7878$(TAR) chf $@ $(distdir)
@@ -97,7 +97,7 @@ postgresql-test-$(VERSION).tar: distdir
9797$(TAR) cf $@ $(distdir)/src/test
9898
9999distdir:
100- - rm -rf $(distdir)* $(dummy)
100+ rm -rf $(distdir)* $(dummy)
101101for x in `cd $(top_srcdir) && find . -name CVS -prune -o -print`; do \
102102 file=`expr X$$x : 'X\./\(.*\)'`; \
103103 if test -d "$(top_srcdir)/$$file" ; then \
@@ -116,7 +116,7 @@ distdir:
116116rm -f $(distdir)/README.CVS
117117
118118distcheck: $(distdir).tar.gz
119- - rm -rf $(dummy)
119+ rm -rf $(dummy)
120120mkdir $(dummy)
121121$(GZIP) -d -c $< | $(TAR) xf -
122122install_prefix=`cd $(dummy) && pwd`; \
@@ -131,7 +131,7 @@ distcheck: $(distdir).tar.gz
131131$(MAKE) -C $(distdir) dist
132132# Room for improvement: Check here whether this distribution tarball
133133# is sufficiently similar to the original one.
134- - rm -rf $(distdir) $(dummy)
134+ rm -rf $(distdir) $(dummy)
135135@echo "Distribution integrity checks out."
136136
137137.PHONY: dist distdir distcheck