Revision 4e4efe412e4255c18be822c32c542f8ff1f982ba authored by ffxbld on 14 December 2015, 23:31:43 UTC, committed by ffxbld on 14 December 2015, 23:31:43 UTC
1 parent 7d9c1a8
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