aboutsummaryrefslogtreecommitdiff
path: root/rules.mk
diff options
context:
space:
mode:
Diffstat (limited to 'rules.mk')
-rw-r--r--rules.mk15
1 files changed, 10 insertions, 5 deletions
diff --git a/rules.mk b/rules.mk
index 43fe31b..0004eb2 100644
--- a/rules.mk
+++ b/rules.mk
@@ -42,11 +42,16 @@ $(OBJ_DIR)/%: $(SRC_DIR)/%.c
targets: $(LIBS) $(BINS) $(UNTS)
clean:
- rm -f $(OBJS)
- rm -f $(DEPS)
- rm -f $(LIBS)
- rm -f $(BINS)
- rm -f $(UNTS)
+ @echo removing object files
+ @rm -f $(OBJS)
+ @echo removing dependency files
+ @rm -f $(DEPS)
+ @echo removing libraries
+ @rm -f $(LIBS)
+ @echo removing binaries
+ @rm -f $(BINS)
+ @echo removing unit tests
+ @rm -f $(UNTS)
install: targets
@echo installing executables