aboutsummaryrefslogtreecommitdiff
path: root/rules.mk
diff options
context:
space:
mode:
authorNicholas Noll <nnoll523@gmail.com>2020-06-20 13:32:11 -0700
committerNicholas Noll <nnoll523@gmail.com>2020-06-20 13:32:11 -0700
commitdb8e974d48b8a9de58f660f159a780dce2992bb7 (patch)
tree5e0c6a6eafe015edc2d029f82473efc1b7483f1e /rules.mk
parent8177d942ac3fbb35ce84fb66b828d1b78a0ef6cd (diff)
fix: added file to make bootstrapping on new device easier. small changes to accomodate
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