author | Ralph Giles <giles@mozilla.com> |
Fri, 06 Feb 2015 10:26:00 -0800 | |
changeset 228809 | 07479758ab6870988d3165990e8d4b468628aeba |
parent 228808 | b9150539d7873d419d94c15d8469bb60dc111957 |
child 228810 | cb6cc119ceddc20798a42847f3b026eb3fd75fbe |
push id | 28271 |
push user | cbook@mozilla.com |
push date | Thu, 12 Feb 2015 14:33:39 +0000 |
treeherder | mozilla-central@81f979b17fbd [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | gps |
bugs | 794723 |
milestone | 38.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
GNUmakefile | file | annotate | diff | comparison | revisions |
new file mode 100644 --- /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