aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: dbcdd1ed335cb01a7a1735d3933f72dd2c53f8d6 (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
# ========================
# =====    ===============
# ======  ================
# ======  ================
# ======  ====   ====   ==
# ======  ===     ==  =  =
# ======  ===  =  ==     =
# =  ===  ===  =  ==  ====
# =  ===  ===  =  ==  =  =
# ==     =====   ====   ==
# ========================
#
# josh: Makefile
# Thu, 14 Dec 2023 15:33:28 +0100
# Joe
#
# GNU Makefile

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

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

josh: ${SRC}
	@go build

clean:
	@go clean