https://github.com/mozilla/gecko-dev
Revision f0735626294263c2b18204289d210e268b273112 authored by Ben Kelly on 14 January 2017, 01:17:15 UTC, committed by Ben Kelly on 14 January 2017, 01:17:15 UTC
1 parent c8ae949
Raw File
Tip revision: f0735626294263c2b18204289d210e268b273112 authored by Ben Kelly on 14 January 2017, 01:17:15 UTC
Bug 1330747 Always nullptr check return value from ServiceWorkerManager::GetInstance(). r=asuth a=lizzard
Tip revision: f073562
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