X-Git-Url: https://git.subgeniuskitty.com/illi/.git/blobdiff_plain/110efea76b41a80a036c24d90ccd28981ff88c9e..a6d2441690856cc1bbb5de7964c506e657baad05:/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 +