Revision 063226ab23c6eac28b6d68573624caecc9e29ab5 authored by ffxbld on 29 February 2016, 17:06:51 UTC, committed by ffxbld on 29 February 2016, 17:06:51 UTC
1 parent 2d01a3c
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