all repos — honk @ b602d33e4b4c03dc9a1a172ec4a850152d4bc11b

my fork of honk

toys/Makefile (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
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