From db8e974d48b8a9de58f660f159a780dce2992bb7 Mon Sep 17 00:00:00 2001 From: Nicholas Noll Date: Sat, 20 Jun 2020 13:32:11 -0700 Subject: fix: added file to make bootstrapping on new device easier. small changes to accomodate --- rules.mk | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) (limited to 'rules.mk') 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 -- cgit v1.2.1