diff options
| -rw-r--r-- | Makefile | 7 | 
1 files changed, 5 insertions, 2 deletions
@@ -6,9 +6,12 @@ endif  OUTPUTS = timerserver timerwp timerwaypoint timerstatus timerstop -.PHONY: all install +.PHONY: all clean install -all: $(OUTPUTS) +all: clean $(OUTPUTS) + +clean: +	rm -f $(OUTPUTS)  install: all  	@echo Installing to $(INSTALL_TARGET_DIR)...  | 
