Revision 42b9ed4bfc1172f4128f2d82a9cdd084aa2dd690 authored by Xidorn Quan on 12 January 2016, 04:18:47 UTC, committed by Xidorn Quan on 12 January 2016, 04:18:47 UTC
1 parent 5e95900
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