aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorUwe Hermann2010-12-29 15:44:12 +0100
committerUwe Hermann2010-12-29 15:44:12 +0100
commita6e6a08a3ac7a61e3067e3d26bdb65ee6149e259 (patch)
tree12c8df870305dff66150ba00ac1bedf5743fa379 /lib
parent24e9860d304c09f804c392fc3ae530c78de29886 (diff)
Make the build/clean targets a bit less verbose.
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/Makefile b/lib/Makefile
index 9003f5b..5fd93e1 100644
--- a/lib/Makefile
+++ b/lib/Makefile
@@ -50,9 +50,8 @@ $(LIBNAME).a: $(OBJS)
$(Q)$(CC) $(CFLAGS) -o $@ -c $<
clean:
- @printf " CLEAN $(subst $(shell pwd)/,,$(OBJS))\n"
+ @printf " CLEAN lib\n"
$(Q)rm -f *.o
- @printf " CLEAN $(LIBNAME).a\n"
$(Q)rm -f $(LIBNAME).a
.PHONY: clean