aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 8 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 83a9166..06d59c1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,10 +1,14 @@
-.PHONY: all install test
+.PHONY: all install test clean
all:
- @@cd src && make all
+ @cd src && make all
install:
- @@cd src && make install
+ @cd src && make install
test: all
- @@cd test && make test
+ @cd test && make test
+
+clean:
+ @cd src && make clean
+ @cd test && make clean