aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBrian Cully <bjc@kublai.com>2012-02-07 08:13:14 -0500
committerBrian Cully <github.20.shmit@spamgourmet.com>2012-02-07 08:13:14 -0500
commit287435cc298e0be713ba3d5801dea5115054534a (patch)
tree7ff04b0c21b05e0ffc3d8f1a9b3af49d9b4c31c5
parent10b824963ff7b0b012e6b85c8b3f07904c473fd1 (diff)
downloadmysqlerl-287435cc298e0be713ba3d5801dea5115054534a.tar.gz
mysqlerl-287435cc298e0be713ba3d5801dea5115054534a.zip
Add clean target to top-level 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