mirror of
https://github.com/vdr-projects/vdr.git
synced 2025-03-01 10:50:46 +00:00
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
This commit is contained in:
12
newplugin
12
newplugin
@@ -12,7 +12,7 @@
|
||||
# See the main source file 'vdr.c' for copyright information and
|
||||
# how to reach the author.
|
||||
#
|
||||
# $Id: newplugin 4.2 2017/05/22 15:34:01 kls Exp $
|
||||
# $Id: newplugin 4.3 2017/05/29 08:55:21 kls Exp $
|
||||
|
||||
$PLUGIN_NAME = $ARGV[0] || die "Usage: newplugin <name>\n";
|
||||
|
||||
@@ -122,7 +122,7 @@ all: \$(SOFILE) i18n
|
||||
|
||||
%.o: %.c
|
||||
\@echo CC \$\@
|
||||
\@\$(CXX) \$(CXXFLAGS) -c \$(DEFINES) \$(INCLUDES) -o \$\@ \$<
|
||||
\$(Q)\$(CXX) \$(CXXFLAGS) -c \$(DEFINES) \$(INCLUDES) -o \$\@ \$<
|
||||
|
||||
### Dependencies:
|
||||
|
||||
@@ -143,15 +143,15 @@ I18Npot = \$(PODIR)/\$(PLUGIN).pot
|
||||
|
||||
%.mo: %.po
|
||||
\@echo MO \$\@
|
||||
\@msgfmt -c -o \$\@ \$<
|
||||
\$(Q)msgfmt -c -o \$\@ \$<
|
||||
|
||||
\$(I18Npot): \$(wildcard *.c)
|
||||
\@echo GT \$\@
|
||||
\@xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-\$(PLUGIN) --package-version=\$(VERSION) --msgid-bugs-address='<see README>' -o \$\@ `ls \$^`
|
||||
\$(Q)xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-\$(PLUGIN) --package-version=\$(VERSION) --msgid-bugs-address='<see README>' -o \$\@ `ls \$^`
|
||||
|
||||
%.po: \$(I18Npot)
|
||||
\@echo PO \$\@
|
||||
\@msgmerge -U --no-wrap --no-location --backup=none -q -N \$\@ \$<
|
||||
\$(Q)msgmerge -U --no-wrap --no-location --backup=none -q -N \$\@ \$<
|
||||
\@touch \$\@
|
||||
|
||||
\$(I18Nmsgs): \$(DESTDIR)\$(LOCDIR)/%/LC_MESSAGES/vdr-\$(PLUGIN).mo: \$(PODIR)/%.mo
|
||||
@@ -166,7 +166,7 @@ install-i18n: \$(I18Nmsgs)
|
||||
|
||||
\$(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)
|
||||
|
Reference in New Issue
Block a user