diff options
-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 |