Mypal/GNUmakefile

15 lines
261 B
Makefile
Raw Permalink Normal View History

2019-03-12 15:31:25 +00:00
# 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