Adding Go module/dependency info.
[illi] / Makefile
CommitLineData
a6d24416
AT
1# (c) 2023 Aaron Taylor <ataylor at subgeniuskitty dot com>
2# See LICENSE.txt file for copyright and license details.
3
4####################################################################################################
5# Configuration
6
7#CC = cc
8#CC_FLAGS = -Wall -std=c99
9
10####################################################################################################
11# Build
12
13all: illi
14
15illi:
16 go build
17
18clean:
19 go clean
20