blob: 38656c8df542f5bc15bcc1bb33e5e19389dbecca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# 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
|