all repos — honk @ 2d544f1cca4948812fc42e2c1a0c0d6c09a4a3e3

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