diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -10,20 +10,20 @@ # == ===== ==== == # ======================== # -# josh: Makefile +# hardflip: Makefile # Thu, 14 Dec 2023 15:33:28 +0100 # Joe # # GNU Makefile -.DEFAULT_GOAL := run +.DEFAULT_GOAL := hf SHELL := /bin/sh SRC := *.go run: ${SRC} @go run ${SRC} -josh: ${SRC} +hf: ${SRC} @go build clean: |