https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 62c8c16df974e3722323265b71d65084e4f0e7cd authored by ffxbld on 21 May 2015, 23:03:04 UTC
Added FIREFOX_38_0_5_RELEASE FIREFOX_38_0_5_BUILD2 tag(s) for changeset b299cbea39e4. DONTBUILD CLOSED TREE a=release
Tip revision: 62c8c16
GNUmakefile
# 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
back to top