https://github.com/mozilla/gecko-dev
Raw File
Tip revision: e31ff5e9c6a02b73b781facc44d2224f7b3449d9 authored by Emilio Cobos Álvarez on 08 July 2024, 18:07:42 UTC
Bug 1906078 - Avoid pathological VecDeque behavior on parallel traversal. r=dshin, a=dmeehan
Tip revision: e31ff5e
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