https://github.com/mozilla/gecko-dev
Revision b8a85fdd84473f78654e01e259715f9a33c9432d authored by Gijs Kruitbosch on 31 May 2024, 00:37:15 UTC, committed by Gijs Kruitbosch on 31 May 2024, 00:37:15 UTC
1 parent 8e77a60
Raw File
Tip revision: b8a85fdd84473f78654e01e259715f9a33c9432d authored by Gijs Kruitbosch on 31 May 2024, 00:37:15 UTC
Bug 1898323 - fix about:logins and formautofill tests better given the disabling of OS reauth on beta/release a=pascalc
Tip revision: b8a85fd
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