https://github.com/mozilla/gecko-dev
Raw File
Tip revision: ecf419356aaa546cb6a653612e622c23976da972 authored by ffxbld on 10 December 2015, 15:48:02 UTC
Added FIREFOX_38_5_0esr_RELEASE FIREFOX_38_5_0esr_BUILD1 tag(s) for changeset 033aa21860a4. DONTBUILD CLOSED TREE a=release
Tip revision: ecf4193
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