https://github.com/mozilla/gecko-dev
Revision a19ee9501e6c6788ddac635fe3a96ac503b6c406 authored by Ryan VanderMeulen on 24 May 2024, 17:38:23 UTC, committed by Ryan VanderMeulen on 24 May 2024, 17:38:23 UTC
Original Revision: https://phabricator.services.mozilla.com/D207833

Differential Revision: https://phabricator.services.mozilla.com/D211261
1 parent 1800b68
Raw File
Tip revision: a19ee9501e6c6788ddac635fe3a96ac503b6c406 authored by Ryan VanderMeulen on 24 May 2024, 17:38:23 UTC
Bug 1892160 - Update AndroidX Compose BOM to 2024.04.01. a=dmeehan
Tip revision: a19ee95
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