From a6d2441690856cc1bbb5de7964c506e657baad05 Mon Sep 17 00:00:00 2001 From: Aaron Taylor Date: Sun, 5 Feb 2023 17:44:30 -0800 Subject: [PATCH] Added `Makefile` stub. --- Makefile | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..97fe174 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +# (c) 2023 Aaron Taylor +# See LICENSE.txt file for copyright and license details. + +#################################################################################################### +# Configuration + +#CC = cc +#CC_FLAGS = -Wall -std=c99 + +#################################################################################################### +# Build + +all: illi + +illi: + go build + +clean: + go clean + -- 2.20.1