honk/toys/Makefile

23 lines
373 B
Makefile
Raw Permalink Normal View History

2019-11-07 22:50:52 +01:00
2023-03-17 15:45:25 +01:00
PROGS=autobonker gettoken saytheday sprayandpray youvegothonks
2022-02-06 05:18:09 +01:00
all: $(PROGS)
clean:
rm -f $(PROGS)
2020-09-11 20:27:14 +02:00
autobonker: autobonker.go
go build autobonker.go
2019-11-07 22:50:52 +01:00
gettoken: gettoken.go
2022-02-09 23:11:55 +01:00
go build gettoken.go fetch.go
2019-11-07 22:50:52 +01:00
saytheday: saytheday.go
go build saytheday.go
2019-11-12 07:09:08 +01:00
2019-11-26 20:57:23 +01:00
sprayandpray: sprayandpray.go
go build sprayandpray.go
2019-11-12 07:09:08 +01:00
youvegothonks: youvegothonks.go
go build youvegothonks.go