mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-10-31 15:05:46 +00:00
15 lines
261 B
Makefile
15 lines
261 B
Makefile
|
# 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
|