https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 4e418798fefd6ae956b64db2361d266cf7a2cc12 authored by ffxbld on 05 February 2016, 23:49:58 UTC
Added FIREFOX_44_0_1_RELEASE FIREFOX_44_0_1_BUILD2 tag(s) for changeset e51f09575766. DONTBUILD CLOSED TREE a=release
Tip revision: 4e41879
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