https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 3c5c76a179dd899eec16ed8efb1306968985a764 authored by Benjamin Beurdouche on 15 December 2021, 16:53:05 UTC
Bug 1746221 - land NSS NSS_3_68_2_RTM UPGRADE_NSS_RELEASE, r+a=ryanvm
Tip revision: 3c5c76a
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