https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 8091ee5004dc6abf2a53cbfaaafc810fee24d360 authored by ffxbld on 30 November 2016, 02:29:08 UTC
Added FENNEC_50_0_2_RELEASE FENNEC_50_0_2_BUILD1 tag(s) for changeset ce8c24de5d25. DONTBUILD CLOSED TREE a=release
Tip revision: 8091ee5
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