From: Aaron Taylor Date: Mon, 6 Feb 2023 01:44:30 +0000 (-0800) Subject: Added `Makefile` stub. X-Git-Url: http://git.subgeniuskitty.com/illi/.git/commitdiff_plain/a6d2441690856cc1bbb5de7964c506e657baad05 Added `Makefile` stub. --- 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 +