Added `Makefile` stub.
authorAaron Taylor <ataylor@subgeniuskitty.com>
Mon, 6 Feb 2023 01:44:30 +0000 (17:44 -0800)
committerAaron Taylor <ataylor@subgeniuskitty.com>
Mon, 6 Feb 2023 01:44:30 +0000 (17:44 -0800)
Makefile [new file with mode: 0644]

diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..97fe174
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,20 @@
+# (c) 2023 Aaron Taylor <ataylor at subgeniuskitty dot com>
+# 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
+