From e2ed63dc436c44676a84ccfc76ec3b33963b5d60 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Sat, 5 Feb 2022 23:18:09 -0500 Subject: [PATCH] clean the toy box --- toys/Makefile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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