Adding some comments after re-reading last night's code commit.
[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:
5d774526 16 @go build
a6d24416
AT
17
18clean:
5d774526 19 @go clean
a6d24416 20
5d774526
AT
21test: clean all
22 @scp illi 192.168.1.115:/tmp/
23
24testkill:
25 @ssh 192.168.1.115 "pkill illi"