aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 4ef9ef14a4b061f127a32d1922facad1deec735a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# ========================
# =====    ===============
# ======  ================
# ======  ================
# ======  ====   ====   ==
# ======  ===     ==  =  =
# ======  ===  =  ==     =
# =  ===  ===  =  ==  ====
# =  ===  ===  =  ==  =  =
# ==     =====   ====   ==
# ========================
#
# hardflip: Makefile
# Thu, 14 Dec 2023 15:33:28 +0100
# Joe
#
# GNU Makefile

.DEFAULT_GOAL	:= hf
SHELL			:= /bin/sh
SRC				:= *.go

run: ${SRC}
	@go run ${SRC}

hf: ${SRC}
	@go build

clean:
	@go clean