https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 9139c7edaf1dd7ec8b61a0f36cee9bf564e01265 authored by ffxbld on 19 April 2017, 20:00:46 UTC
Added FENNEC_53_0_1_RELEASE FENNEC_53_0_1_BUILD1 tag(s) for changeset f029d1a1324b. DONTBUILD CLOSED TREE a=release
Tip revision: 9139c7e
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