GNUmakefile (261B)
1 # This Makefile is used as a shim to aid people with muscle memory 2 # so that they can type "make". 3 # 4 # This file and all of its targets should not be used by anything important. 5 6 all: build 7 8 build: 9 ./mach build 10 11 clean: 12 ./mach clobber 13 14 .PHONY: all build clean