diff options
author | Brian Cully <bjc@kublai.com> | 2012-02-07 08:13:14 -0500 |
---|---|---|
committer | Brian Cully <github.20.shmit@spamgourmet.com> | 2012-02-07 08:13:14 -0500 |
commit | 287435cc298e0be713ba3d5801dea5115054534a (patch) | |
tree | 7ff04b0c21b05e0ffc3d8f1a9b3af49d9b4c31c5 /Makefile | |
parent | 10b824963ff7b0b012e6b85c8b3f07904c473fd1 (diff) | |
download | mysqlerl-287435cc298e0be713ba3d5801dea5115054534a.tar.gz mysqlerl-287435cc298e0be713ba3d5801dea5115054534a.zip |
Add clean target to top-level makefile
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -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 |