summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorchriszero <zerov83@gmail.com>2015-02-28 13:23:18 +0100
committerchriszero <zerov83@gmail.com>2015-02-28 13:23:18 +0100
commit92613bd473ee262d157ce4d562a7c77ecf696daa (patch)
tree72edd0ac31ef4bd92001a43d99516f16e6f0718c /Makefile
parentd6339ad957b31ec4810777ef4c63f6e42a66d2c2 (diff)
downloadvdr-plugin-plex-92613bd473ee262d157ce4d562a7c77ecf696daa.tar.gz
vdr-plugin-plex-92613bd473ee262d157ce4d562a7c77ecf696daa.tar.bz2
Added translation. de_DE
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile25
1 files changed, 22 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index b902f3a..a7fec6f 100644
--- a/Makefile
+++ b/Makefile
@@ -82,8 +82,27 @@ override CFLAGS += $(_CFLAGS) $(DEFINES) $(INCLUDES) \
### The object files (add further files here):
-OBJS = $(patsubst %.c,%.o,$(wildcard *.c))
-OBJS += $(patsubst %.cpp,%.o,$(wildcard *.cpp))
+OBJS = $(PLUGIN).o \
+ Config.o \
+ ControlServer.o \
+ cPlexOsdItem.o \
+ m3u8Parser.o \
+ hlsPlayer.o \
+ hlsPlayerControl.o \
+ plexgdm.o \
+ PlexHelper.o \
+ Plexservice.o \
+ PlexServer.o \
+ PlexHTTPRequestHandler.o \
+ PlexReqHandlerFactory.o \
+ SubscriptionManager.o \
+ user.o \
+ XmlObject.o \
+ MediaContainer.o \
+ Directory.o \
+ PVideo.o \
+ Stream.o \
+ Media.o \
SRCS = $(wildcard $(OBJS:.o=.c)) $(PLUGIN).cpp
@@ -111,7 +130,7 @@ I18Npot = $(PODIR)/$(PLUGIN).pot
%.mo: %.po
msgfmt -c -o $@ $<
-$(I18Npot): $(SRCS)
+$(I18Npot): $(wildcard *.cpp)
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)