Revision 6112e2e92084e91286d01a54b519e7740465ab4f authored by Nick Thomas on 16 March 2016, 12:42:37 UTC, committed by Nick Thomas on 16 March 2016, 12:42:37 UTC
1 parent af53879
Raw File
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