Revision c9f4e1792247a668cc5ee95b5a882b3356b971ce authored by JW Wang on 12 January 2016, 00:05:21 UTC, committed by JW Wang on 12 January 2016, 00:05:21 UTC
1 parent ed071f6
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