summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authormo khan <mo.khan@gmail.com>2020-07-05 15:45:02 -0600
committermo khan <mo.khan@gmail.com>2020-07-05 15:45:02 -0600
commit7875e6df22f74499a6d756a87740f2c27cbf081a (patch)
tree6244613cb2602e75926fcd3441f2a2b63dcc47c7 /Makefile
parent525b906daa5736f262979549a20549908a59fc89 (diff)
Add make clean and exclude tarballs
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 3 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 3499854..951e230 100644
--- a/Makefile
+++ b/Makefile
@@ -4,6 +4,9 @@ objects := $(shell find src -mindepth 2 -maxdepth 2 -type d)
run :
for i in $(objects); do cd $$i && make clean run && cd -; done
+clean :
+ for i in $(objects); do cd $$i && make clean && cd -; done
+
test :
for i in $(objects); do cd $$i && make clean run_test && cd -; done