Blame GNUmakefile

Packit f0b94e
# This Makefile is used as a shim to aid people with muscle memory
Packit f0b94e
# so that they can type "make".
Packit f0b94e
#
Packit f0b94e
# This file and all of its targets should not be used by anything important.
Packit f0b94e
Packit f0b94e
all: build
Packit f0b94e
Packit f0b94e
build:
Packit f0b94e
	./mach build
Packit f0b94e
Packit f0b94e
clean:
Packit f0b94e
	./mach clobber
Packit f0b94e
Packit f0b94e
.PHONY: all build clean