honk/toys/Makefile
2023-03-17 10:45:25 -04:00

22 lines
373 B
Makefile

PROGS=autobonker gettoken saytheday sprayandpray youvegothonks
all: $(PROGS)
clean:
rm -f $(PROGS)
autobonker: autobonker.go
go build autobonker.go
gettoken: gettoken.go
go build gettoken.go fetch.go
saytheday: saytheday.go
go build saytheday.go
sprayandpray: sprayandpray.go
go build sprayandpray.go
youvegothonks: youvegothonks.go
go build youvegothonks.go