Added framework for experimenting using Go.
[surreal-numbers] / common / mk.conf
# © 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