summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 9d89486..d99d53c 100644
--- a/Makefile
+++ b/Makefile
@@ -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)...