diff options
author | Karl Melscher <kamel5@gmx.net> | 2018-03-07 16:10:44 +0100 |
---|---|---|
committer | Karl Melscher <kamel5@gmx.net> | 2018-03-07 16:10:44 +0100 |
commit | b0aa8607348b6688da123b6a6125844d756ab2dd (patch) | |
tree | b091d429db6e7e26bddf99b84efd5da6f51d492d | |
parent | f593ad8f2ca6d2d466e72bd656cae8700661588a (diff) | |
download | skin-lcarsng-b0aa8607348b6688da123b6a6125844d756ab2dd.tar.gz skin-lcarsng-b0aa8607348b6688da123b6a6125844d756ab2dd.tar.bz2 |
Makefile changes
-rw-r--r-- | Makefile | 29 | ||||
-rw-r--r-- | po/de_DE.po | 12 |
2 files changed, 22 insertions, 19 deletions
@@ -48,17 +48,13 @@ SOFILE = libvdr-$(PLUGIN).so ### Includes and Defines and Dependencies (add further entries here): -INCLUDES += $(shell pkg-config --cflags Magick++) +INCLUDES += DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"' -LIBS += $(shell pkg-config --libs Magick++) - ### The object files (add further files here): OBJS = lcarsng.o $(PLUGIN).o -#OBJS = config.o imageloader.o baserender.o displaychannel.o displaymenu.o displaymessage.o \ - displayreplay.o displaytracks.o displayvolume.o flat.o $(PLUGIN).o ### The main target: @@ -67,14 +63,15 @@ all: $(SOFILE) i18n ### Implicit rules: %.o: %.c - $(CXX) -Wall $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $< + @echo CC $@ + $(Q)$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $< ### Dependencies: MAKEDEP = $(CXX) -MM -MG DEPFILE = .dependencies $(DEPFILE): Makefile - @$(MAKEDEP) $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ + @$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@ -include $(DEPFILE) @@ -87,17 +84,21 @@ I18Nmsgs = $(addprefix $(DESTDIR)$(LOCDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLU I18Npot = $(PODIR)/$(PLUGIN).pot %.mo: %.po - msgfmt -c -o $@ $< + @echo MO $@ + $(Q)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='<see README>' -o $@ `ls $^` + @echo GT $@ + $(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) - msgmerge -U --no-wrap --no-location --backup=none -q -N $@ $< + @echo PO $@ + $(Q)msgmerge -U --no-wrap --no-location --backup=none -q -N $@ $< @touch $@ $(I18Nmsgs): $(DESTDIR)$(LOCDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo - install -D -m644 $< $@ + @echo IN $@ + $(Q)install -D -m644 $< $@ .PHONY: i18n i18n: $(I18Nmo) $(I18Npot) @@ -107,10 +108,12 @@ install-i18n: $(I18Nmsgs) ### Targets: $(SOFILE): $(OBJS) - $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@ + @echo LD $@ + $(Q)$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@ install-lib: $(SOFILE) - install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION) + @echo IN $@ + $(Q)install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION) install-themes: mkdir -p $(DESTDIR)$(VDRCONFDIR)/themes diff --git a/po/de_DE.po b/po/de_DE.po index 7051224..bd12219 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -4,13 +4,13 @@ # msgid "" msgstr "" -"Project-Id-Version: vdr-skinlcarsng 0.0.1\n" +"Project-Id-Version: SkinLcarsng 0.0.2\n" "Report-Msgid-Bugs-To: <see README>\n" -"POT-Creation-Date: 2013-10-18 12:01+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" -"Language-Team: LANGUAGE <LL@li.org>\n" -"Language: \n" +"POT-Creation-Date: 2017-10-18 12:01+0200\n" +"PO-Revision-Date: 2017-10-18 12:01+0200\n" +"Last-Translator: Karl Melscher <kamel5@gmx.net>\n" +"Language-Team: <vdr@linuxtv.org>\n" +"Language: de\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-15\n" "Content-Transfer-Encoding: 8bit\n" |