Revision 6ae07a1d9b8a712eb7a34448ee7c1859f455a62f authored by ffxbld on 13 February 2016, 11:16:41 UTC, committed by ffxbld on 13 February 2016, 11:16:41 UTC
1 parent 4cfffd1
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