toys/Makefile (view raw)
1
2PROGS=autobonker gettoken saytheday sprayandpray youvegothonks
3
4all: $(PROGS)
5
6clean:
7 rm -f $(PROGS)
8
9autobonker: autobonker.go
10 go build autobonker.go
11
12gettoken: gettoken.go
13 go build gettoken.go fetch.go
14
15saytheday: saytheday.go
16 go build saytheday.go
17
18sprayandpray: sprayandpray.go
19 go build sprayandpray.go
20
21youvegothonks: youvegothonks.go
22 go build youvegothonks.go