Added framework for experimenting using Go.
[surreal-numbers] / common / mk.conf
diff --git a/common/mk.conf b/common/mk.conf
new file mode 100644 (file)
index 0000000..3fa6ba1
--- /dev/null
@@ -0,0 +1,21 @@
+# © 2021 Aaron Taylor <ataylor at subgeniuskitty dot com>
+# See LICENSE.txt file for copyright and license details.
+
+####################################################################################################
+# Installation Paths
+
+PREFIX = /home/ataylor/
+BINPREFIX = ${PREFIX}/bin
+
+####################################################################################################
+# Configuration
+
+CC              = cc
+CC_FLAGS        = -Wall -std=c99 -pedantic -Wno-deprecated-declarations -O2
+LD_FLAGS        = 
+
+GOCC       = go build
+GOCC_FLAGS = 
+GOLD_FLAGS = 
+
+.SUFFIXES: .go .c