Revision f3605e78736776a18aced16ee187d1755fbac10e authored by ffxbld on 18 December 2015, 17:57:06 UTC, committed by ffxbld on 18 December 2015, 17:57:06 UTC
1 parent 0de5325
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