honk/toys/Makefile

23 lines
364 B
Makefile
Raw Normal View History

2019-11-07 21:50:52 +00:00
2022-02-06 04:18:09 +00:00
PROGS=autobonker gettoken saytheday sprayandpray youvegothonks
all: $(PROGS)
clean:
rm -f $(PROGS)
2020-09-11 18:27:14 +00:00
autobonker: autobonker.go
go build autobonker.go
2019-11-07 21:50:52 +00:00
gettoken: gettoken.go
go build gettoken.go
saytheday: saytheday.go
go build saytheday.go
2019-11-12 06:09:08 +00:00
2019-11-26 19:57:23 +00:00
sprayandpray: sprayandpray.go
go build sprayandpray.go
2019-11-12 06:09:08 +00:00
youvegothonks: youvegothonks.go
go build youvegothonks.go