summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDavid Wragg <dpw@lshift.net>2009-08-18 11:10:40 +0100
committerDavid Wragg <dpw@lshift.net>2009-08-18 11:10:40 +0100
commit07ecf11d15147062a239445ddeff6a0a938da18d (patch)
tree0bb2c54181395ccb3ad387be045c47979f0f2708 /Makefile
parentfde61026f700a18e40eb1d94e3ce3e09e781d812 (diff)
downloadrabbitmq-server-git-07ecf11d15147062a239445ddeff6a0a938da18d.tar.gz
Invoke make as $(MAKE) from within makefiles
Our makefiles require gnumake. Under some unices, gnumake is installed as gmake, with plain "make" referring to a something less featureful. So it's necessary to invoke make as $(MAKE) from within makefiles, in order to make sure we invoke the same variant.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 125ebc711b..080324f270 100644
--- a/Makefile
+++ b/Makefile
@@ -151,7 +151,7 @@ srcdist: distclean
rm -rf $(TARGET_SRC_DIR)
distclean: clean
- make -C $(AMQP_CODEGEN_DIR) distclean
+ $(MAKE) -C $(AMQP_CODEGEN_DIR) distclean
rm -rf dist
find . -regex '.*\(~\|#\|\.swp\|\.dump\)' -exec rm {} \;