diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-29 09:12:42 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2017-05-29 09:12:42 +0200 |
commit | f69b920dbc9d9ca85f85d69c047d7fcef4188c37 (patch) | |
tree | a88171f77ff0aa86995abe21fddc8df3feb7bda4 /PLUGINS/src/osddemo | |
parent | a4c851f759cf51760223e63b3f06d29743d80031 (diff) | |
download | vdr-f69b920dbc9d9ca85f85d69c047d7fcef4188c37.tar.gz vdr-f69b920dbc9d9ca85f85d69c047d7fcef4188c37.tar.bz2 |
The Makefiles now use the macro $(Q) instead of a plain '@' in front of their commands, so that verbosity can be controlled by the user
Diffstat (limited to 'PLUGINS/src/osddemo')
-rw-r--r-- | PLUGINS/src/osddemo/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/PLUGINS/src/osddemo/Makefile b/PLUGINS/src/osddemo/Makefile index 87500169..8deef83c 100644 --- a/PLUGINS/src/osddemo/Makefile +++ b/PLUGINS/src/osddemo/Makefile @@ -1,7 +1,7 @@ # # Makefile for a Video Disk Recorder plugin # -# $Id: Makefile 4.1 2017/05/22 15:30:47 kls Exp $ +# $Id: Makefile 4.2 2017/05/29 08:30:08 kls Exp $ # The official name of this plugin. # This name will be used in the '-P...' option of VDR to load the plugin. @@ -62,7 +62,7 @@ all: $(SOFILE) %.o: %.c @echo CC $@ - @$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $< + $(Q)$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $< ### Dependencies: @@ -77,7 +77,7 @@ $(DEPFILE): Makefile $(SOFILE): $(OBJS) @echo LD $@ - @$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@ + $(Q)$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@ install-lib: $(SOFILE) install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION) |