https://github.com/mozilla/gecko-dev
Raw File
Tip revision: bb2b22995f909d33ebbcfed4f43fdd05c0ac26e5 authored by ffxbld on 02 May 2016, 23:12:12 UTC
Added FENNEC_46_0_1_RELEASE FENNEC_46_0_1_BUILD1 tag(s) for changeset 57f513ab0330. DONTBUILD CLOSED TREE a=release
Tip revision: bb2b229
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