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 --- newplugin | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'newplugin') diff --git a/newplugin b/newplugin index d8e9243c..161ffdac 100755 --- a/newplugin +++ b/newplugin @@ -12,7 +12,7 @@ # See the main source file 'vdr.c' for copyright information and # how to reach the author. # -# $Id: newplugin 4.1 2015/09/10 11:11:14 kls Exp $ +# $Id: newplugin 4.2 2017/05/22 15:34:01 kls Exp $ $PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin \n"; @@ -121,7 +121,8 @@ all: \$(SOFILE) i18n ### Implicit rules: %.o: %.c - \$(CXX) \$(CXXFLAGS) -c \$(DEFINES) \$(INCLUDES) -o \$\@ \$< + \@echo CC \$\@ + \@\$(CXX) \$(CXXFLAGS) -c \$(DEFINES) \$(INCLUDES) -o \$\@ \$< ### Dependencies: @@ -141,13 +142,16 @@ I18Nmsgs = \$(addprefix \$(DESTDIR)\$(LOCDIR)/, \$(addsuffix /LC_MESSAGES/vdr-\ I18Npot = \$(PODIR)/\$(PLUGIN).pot %.mo: %.po - msgfmt -c -o \$\@ \$< + \@echo MO \$\@ + \@msgfmt -c -o \$\@ \$< \$(I18Npot): \$(wildcard *.c) - xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-\$(PLUGIN) --package-version=\$(VERSION) --msgid-bugs-address='' -o \$\@ `ls \$^` + \@echo GT \$\@ + \@xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-\$(PLUGIN) --package-version=\$(VERSION) --msgid-bugs-address='' -o \$\@ `ls \$^` %.po: \$(I18Npot) - msgmerge -U --no-wrap --no-location --backup=none -q -N \$\@ \$< + \@echo PO \$\@ + \@msgmerge -U --no-wrap --no-location --backup=none -q -N \$\@ \$< \@touch \$\@ \$(I18Nmsgs): \$(DESTDIR)\$(LOCDIR)/%/LC_MESSAGES/vdr-\$(PLUGIN).mo: \$(PODIR)/%.mo @@ -161,7 +165,8 @@ install-i18n: \$(I18Nmsgs) ### 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) -- cgit v1.2.3