From 1279dff5129c0cc9bfab181d30f67ac1fbb1aef0 Mon Sep 17 00:00:00 2001 From: Ralph Giles Date: Fri, 6 Feb 2015 10:26:00 -0800 Subject: [PATCH] Bug 794723 - Add a default makefile which wraps mach. r=gps This makes it easier for new contributors to get a build started without having to know about our mach driver. --HG-- extra : rebase_source : 19556522e80907dd9bf89d16b736ed49f7b2468a --- GNUmakefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 GNUmakefile diff --git a/GNUmakefile b/GNUmakefile new file mode 100644 index 000000000000..38656c8df542 --- /dev/null +++ b/GNUmakefile @@ -0,0 +1,14 @@ +# This Makefile is used as a shim to aid people with muscle memory +# so that they can type "make". +# +# This file and all of its targets should not be used by anything important. + +all: build + +build: + ./mach build + +clean: + ./mach clobber + +.PHONY: all build clean