diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2009-12-23 19:17:45 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2009-12-23 19:17:45 +0000 |
commit | ada3c65e456daec07244c9bf94b30976e7161cca (patch) | |
tree | 99a34315b6856a3d69e840ef3ab2ff520a842178 /Makefile | |
parent | d68e08d1fea8b71057849321a17f87839a2ecbd0 (diff) | |
download | postgresql-ada3c65e456daec07244c9bf94b30976e7161cca.tar.gz postgresql-ada3c65e456daec07244c9bf94b30976e7161cca.zip |
Replace target list by a wildcard, so that this workaround makefile
also works transparently for lesser used targets.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ # GNUmakefile won't exist yet, so we catch that case as well. -all check install installdirs installcheck installcheck-parallel uninstall clean distclean maintainer-clean: +%: @if [ ! -f GNUmakefile ] ; then \ echo "You need to run the 'configure' program first. See the file"; \ echo "'INSTALL' for installation instructions." ; \ |