diff options
Diffstat (limited to '')
-rw-r--r-- | Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..ce7ef3a --- /dev/null +++ b/Makefile @@ -0,0 +1,26 @@ +# ======================== +# ===== =============== +# ====== ================ +# ====== ================ +# ====== ==== ==== == +# ====== === == = = +# ====== === = == = +# = === === = == ==== +# = === === = == = = +# == ===== ==== == +# ======================== +# +# josh: Makefile +# Thu, 14 Dec 2023 15:00:12 +0100 +# Joe +# +# GNU Makefile + +.DEFAULT_GOAL := run +SHELL := /bin/sh + +run: + @go run *.go + +all: + @go build |