https://github.com/mozilla/gecko-dev
Raw File
Tip revision: 55bff5a718a2721e65d20d85e2d57d20da571dcf authored by Ryan VanderMeulen on 27 September 2023, 23:12:23 UTC
Bug 1855550 - VP8: disallow thread count changes. r=jesup, a=dsmith
Tip revision: 55bff5a
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