Revision dfad3f48893a612a212cefe049b0e0e374b83fc0 authored by ffxbld on 18 January 2017, 23:29:36 UTC, committed by ffxbld on 18 January 2017, 23:29:36 UTC
1 parent 842e8a6
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