Revision 41a2b969d900b3ed6dd4e271c7da71d0dc4b9cef authored by Mark Banner on 09 February 2016, 10:16:24 UTC, committed by Mark Banner on 09 February 2016, 10:16:24 UTC
1 parent 03b83a7
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