Make the build/clean targets a bit less verbose.

This commit is contained in:
Uwe Hermann
2010-12-29 15:44:12 +01:00
parent 24e9860d30
commit a6e6a08a3a
2 changed files with 8 additions and 15 deletions

View File

@@ -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