https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 7c80d82d95278fd6c9d2fc50631a802e809f6940 authored by ffxbld on 15 September 2015, 21:21:01 UTC
Added FENNEC_41_0_RELEASE FENNEC_41_0_BUILD1 tag(s) for changeset 6eb2409b59d1. DONTBUILD CLOSED TREE a=release
Tip revision: 7c80d82
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