GNUmakefile 261 B

123456789101112131415
  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. all: build
  6. build:
  7. ./mach build
  8. clean:
  9. ./mach clobber
  10. .PHONY: all build clean