From e7cd3f0b33d991d10c540c4fd9d6bca66938784c Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Mon, 22 May 2017 16:29:49 +0200 Subject: No longer displaying the actual (lengthy) commands during the build process --- libsi/Makefile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'libsi/Makefile') diff --git a/libsi/Makefile b/libsi/Makefile index dc67e516..2ae223b8 100644 --- a/libsi/Makefile +++ b/libsi/Makefile @@ -1,7 +1,7 @@ # # Makefile for a libsi # -# $Id: Makefile 3.1 2015/02/09 12:28:24 kls Exp $ +# $Id: Makefile 4.1 2017/05/22 15:33:20 kls Exp $ ### The archiver options: @@ -18,7 +18,8 @@ OBJS = util.o si.o section.o descriptor.o ### Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< + @echo CC libsi/$@ + @$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $< ### Dependencies: @@ -35,7 +36,8 @@ all: libsi.a @: libsi.a : $(OBJS) - $(AR) $(ARFLAGS) $@ $(OBJS) + @echo AR libsi/$@ + @$(AR) $(ARFLAGS) $@ $(OBJS) clean: @-rm -f $(OBJS) $(DEPFILE) *.a *.so *.tgz core* *~ -- cgit v1.2.3