diff options
author | Johns <johns98@gmx.net> | 2013-02-15 16:32:32 +0100 |
---|---|---|
committer | Johns <johns98@gmx.net> | 2013-02-15 16:32:32 +0100 |
commit | eb4b8437553ff7666eceadd09c6cb9dd8255380e (patch) | |
tree | 1f38b1dbdbdf094e6ad4e8819945b69f59f7e1a1 /Makefile | |
parent | 70415bf8dd9eeed5f70854f66e0eab085f80e7c0 (diff) | |
download | vdr-plugin-play-eb4b8437553ff7666eceadd09c6cb9dd8255380e.tar.gz vdr-plugin-play-eb4b8437553ff7666eceadd09c6cb9dd8255380e.tar.bz2 |
First complete version imported.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 7 insertions, 4 deletions
@@ -12,7 +12,8 @@ PLUGIN = play ### Configuration (edit this for your needs) # support avfs a virtual file system -AVFS ?= $(shell test -x /usr/bin/avfs-config && echo 1) +# FIXME: AVFS isn't working, corrupts memory +#AVFS ?= $(shell test -x /usr/bin/avfs-config && echo 1) # use ffmpeg libswscale SWCALE ?= $(shell pkg-config --exists libswscale && echo 1) # support png images @@ -20,7 +21,7 @@ PNG ?= $(shell pkg-config --exists libpng && echo 1) # support jpg images JPG ?= $(shell test -r /usr/include/jpeglib.h && echo 1) -CONFIG := # -DDEBUG # uncomment to build DEBUG +CONFIG := #-DDEBUG # uncomment to build DEBUG ifeq ($(AVFS),1) CONFIG += -DUSE_AVFS @@ -106,7 +107,7 @@ override CFLAGS += $(_CFLAGS) $(DEFINES) $(INCLUDES) \ ### The object files (add further files here): -OBJS = $(PLUGIN).o dia.o video.o readdir.o +OBJS = $(PLUGIN).o player.o video.o readdir.o SRCS = $(wildcard $(OBJS:.o=.c)) $(PLUGIN).cpp @@ -135,7 +136,9 @@ I18Npot = $(PODIR)/$(PLUGIN).pot msgfmt -c -o $@ $< $(I18Npot): $(SRCS) - xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-$(PLUGIN) --package-version=$(VERSION) --msgid-bugs-address='<see README>' -o $@ `ls $^` + xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP \ + -k_ -k_N --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 $@ $< |