Skip to content
This repository has been archived by the owner on Aug 30, 2021. It is now read-only.

Commit

Permalink
Bug 794723 - Add a default makefile which wraps mach. r=gps
Browse files Browse the repository at this point in the history
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
  • Loading branch information
rillian committed Feb 6, 2015
1 parent 3d67dfb commit 1279dff
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions 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

0 comments on commit 1279dff

Please sign in to comment.