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 /PLUGINS/src/svdrpdemo | |
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 'PLUGINS/src/svdrpdemo')
-rw-r--r-- | PLUGINS/src/svdrpdemo/Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/PLUGINS/src/svdrpdemo/Makefile b/PLUGINS/src/svdrpdemo/Makefile index 9a8235a4..292b8c76 100644 --- a/PLUGINS/src/svdrpdemo/Makefile +++ b/PLUGINS/src/svdrpdemo/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 3.1 2014/01/01 13:29:54 kls Exp $ +# $Id: Makefile 4.1 2017/05/22 15:31:19 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -61,7 +61,8 @@ all: $(SOFILE) ### Implicit rules: %.o: %.c - $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $< + @echo CC $@ + @$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $< ### Dependencies: @@ -75,7 +76,8 @@ $(DEPFILE): Makefile ### Targets: $(SOFILE): $(OBJS) - $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@ + @echo LD $@ + @$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@ install-lib: $(SOFILE) install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION) |