diff --git a/Makefile b/Makefile index ef38af9..de20a16 100644 --- a/Makefile +++ b/Makefile @@ -5,5 +5,8 @@ export DEBUG all: cd gowrikumar && $(MAKE) +clean: + cd gowrikumar && $(MAKE) clean -.PHONY: all + +.PHONY: all clean diff --git a/gowrikumar/Makefile b/gowrikumar/Makefile index ef886fd..00fcf23 100644 --- a/gowrikumar/Makefile +++ b/gowrikumar/Makefile @@ -6,5 +6,8 @@ export BINDIR all: cd src && $(MAKE) +clean: + rm -v $(BINDIR)/* -.PHONY: all + +.PHONY: all clean