diff --git a/toys/Makefile b/toys/Makefile index 4b75678..3fa2ff6 100644 --- a/toys/Makefile +++ b/toys/Makefile @@ -1,5 +1,10 @@ -all: autobonker gettoken saytheday sprayandpray youvegothonks +PROGS=autobonker gettoken saytheday sprayandpray youvegothonks + +all: $(PROGS) + +clean: + rm -f $(PROGS) autobonker: autobonker.go go build autobonker.go