diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-22 16:29:49 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-22 16:29:49 +0200 |
commit | e7cd3f0b33d991d10c540c4fd9d6bca66938784c (patch) | |
tree | ca0ca7791daf6815e09ff58378f4d039daaa4b97 /libsi/Makefile | |
parent | 354910faab19e9d32dd3f1a7492ba9f685923ba8 (diff) | |
download | vdr-e7cd3f0b33d991d10c540c4fd9d6bca66938784c.tar.gz vdr-e7cd3f0b33d991d10c540c4fd9d6bca66938784c.tar.bz2 |
No longer displaying the actual (lengthy) commands during the build process
Diffstat (limited to 'libsi/Makefile')
-rw-r--r-- | libsi/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
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* *~ |