2002-05-09 16:26:56 +02:00
|
|
|
#
|
|
|
|
# Makefile for a Video Disk Recorder plugin
|
|
|
|
#
|
2007-10-14 09:29:59 +02:00
|
|
|
# $Id: Makefile 1.20 2007/10/14 09:23:04 kls Exp $
|
2002-05-09 16:26:56 +02:00
|
|
|
|
|
|
|
# The official name of this plugin.
|
|
|
|
# This name will be used in the '-P...' option of VDR to load the plugin.
|
|
|
|
# By default the main source file also carries this name.
|
2007-08-11 12:39:06 +02:00
|
|
|
# IMPORTANT: the presence of this macro is important for the Make.config
|
|
|
|
# file. So it must be defined, even if it is not used here!
|
2002-05-09 16:26:56 +02:00
|
|
|
#
|
|
|
|
PLUGIN = hello
|
|
|
|
|
|
|
|
### The version number of this plugin (taken from the main source file):
|
|
|
|
|
2002-05-17 16:29:02 +02:00
|
|
|
VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ print $$6 }' | sed -e 's/[";]//g')
|
2002-05-09 16:26:56 +02:00
|
|
|
|
2002-11-01 14:05:36 +01:00
|
|
|
### The C++ compiler and options:
|
|
|
|
|
2002-12-13 15:06:52 +01:00
|
|
|
CXX ?= g++
|
2005-11-11 13:22:02 +01:00
|
|
|
CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual
|
2002-11-01 14:05:36 +01:00
|
|
|
|
2002-05-09 16:26:56 +02:00
|
|
|
### The directory environment:
|
|
|
|
|
|
|
|
VDRDIR = ../../..
|
|
|
|
LIBDIR = ../../lib
|
|
|
|
TMPDIR = /tmp
|
|
|
|
|
2002-11-01 14:05:36 +01:00
|
|
|
### Allow user defined options to overwrite defaults:
|
|
|
|
|
|
|
|
-include $(VDRDIR)/Make.config
|
|
|
|
|
2006-04-16 09:36:10 +02:00
|
|
|
### The version number of VDR's plugin API (taken from VDR's "config.h"):
|
2002-05-09 16:26:56 +02:00
|
|
|
|
2006-04-24 17:53:19 +02:00
|
|
|
APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h)
|
2002-05-09 16:26:56 +02:00
|
|
|
|
|
|
|
### The name of the distribution archive:
|
|
|
|
|
2002-05-12 15:12:12 +02:00
|
|
|
ARCHIVE = $(PLUGIN)-$(VERSION)
|
|
|
|
PACKAGE = vdr-$(ARCHIVE)
|
2002-05-09 16:26:56 +02:00
|
|
|
|
|
|
|
### Includes and Defines (add further entries here):
|
|
|
|
|
2006-04-15 12:39:35 +02:00
|
|
|
INCLUDES += -I$(VDRDIR)/include
|
2002-05-09 16:26:56 +02:00
|
|
|
|
2003-12-22 13:29:24 +01:00
|
|
|
DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
|
2002-05-09 16:26:56 +02:00
|
|
|
|
|
|
|
### The object files (add further files here):
|
|
|
|
|
2007-08-11 12:39:06 +02:00
|
|
|
OBJS = $(PLUGIN).o
|
2002-05-09 16:26:56 +02:00
|
|
|
|
2007-08-15 13:20:04 +02:00
|
|
|
### The main target:
|
|
|
|
|
|
|
|
all: libvdr-$(PLUGIN).so i18n
|
|
|
|
|
2002-05-09 16:26:56 +02:00
|
|
|
### Implicit rules:
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
|
|
|
|
|
2007-08-11 12:39:06 +02:00
|
|
|
### Dependencies:
|
2002-05-09 16:26:56 +02:00
|
|
|
|
2007-08-11 12:39:06 +02:00
|
|
|
MAKEDEP = $(CXX) -MM -MG
|
2002-05-09 16:26:56 +02:00
|
|
|
DEPFILE = .dependencies
|
|
|
|
$(DEPFILE): Makefile
|
|
|
|
@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
|
|
|
|
|
2002-05-17 16:29:02 +02:00
|
|
|
-include $(DEPFILE)
|
2002-05-09 16:26:56 +02:00
|
|
|
|
2007-08-11 12:39:06 +02:00
|
|
|
### Internationalization (I18N):
|
|
|
|
|
|
|
|
PODIR = po
|
|
|
|
LOCALEDIR = $(VDRDIR)/locale
|
|
|
|
I18Npo = $(wildcard $(PODIR)/*.po)
|
|
|
|
I18Nmo = $(addsuffix .mo, $(foreach file, $(I18Npo), $(basename $(file))))
|
|
|
|
I18Ndirs = $(notdir $(foreach file, $(I18Npo), $(basename $(file))))
|
|
|
|
I18Npot = $(PODIR)/$(PLUGIN).pot
|
|
|
|
|
|
|
|
%.mo: %.po
|
|
|
|
msgfmt -c -o $@ $<
|
|
|
|
|
|
|
|
$(I18Npot): $(wildcard *.c)
|
2007-10-13 09:54:09 +02:00
|
|
|
xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --msgid-bugs-address='<vdr-bugs@cadsoft.de>' -o $@ $(wildcard *.c)
|
2007-08-11 12:39:06 +02:00
|
|
|
|
|
|
|
$(I18Npo): $(I18Npot)
|
2007-10-13 09:54:09 +02:00
|
|
|
msgmerge -U --no-wrap --no-location --backup=none -q $@ $<
|
2007-08-11 12:39:06 +02:00
|
|
|
|
2007-10-14 09:29:59 +02:00
|
|
|
i18n: $(I18Npot) $(I18Nmo)
|
2007-08-11 12:39:06 +02:00
|
|
|
@mkdir -p $(LOCALEDIR)
|
|
|
|
for i in $(I18Ndirs); do\
|
|
|
|
mkdir -p $(LOCALEDIR)/$$i/LC_MESSAGES;\
|
2007-08-19 14:34:44 +02:00
|
|
|
cp $(PODIR)/$$i.mo $(LOCALEDIR)/$$i/LC_MESSAGES/vdr-$(PLUGIN).mo;\
|
2007-08-11 12:39:06 +02:00
|
|
|
done
|
|
|
|
|
2002-05-09 16:26:56 +02:00
|
|
|
### Targets:
|
|
|
|
|
|
|
|
libvdr-$(PLUGIN).so: $(OBJS)
|
|
|
|
$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
|
2006-09-10 14:10:51 +02:00
|
|
|
@cp --remove-destination $@ $(LIBDIR)/$@.$(APIVERSION)
|
2002-05-09 16:26:56 +02:00
|
|
|
|
2002-05-17 16:29:02 +02:00
|
|
|
dist: clean
|
2002-05-09 16:26:56 +02:00
|
|
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@mkdir $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@cp -a * $(TMPDIR)/$(ARCHIVE)
|
2002-05-12 15:12:12 +02:00
|
|
|
@tar czf $(PACKAGE).tgz -C $(TMPDIR) $(ARCHIVE)
|
2002-05-09 16:26:56 +02:00
|
|
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
2002-05-12 15:12:12 +02:00
|
|
|
@echo Distribution package created as $(PACKAGE).tgz
|
2002-05-09 16:26:56 +02:00
|
|
|
|
|
|
|
clean:
|
2007-08-11 12:39:06 +02:00
|
|
|
@-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
|
2002-05-09 16:26:56 +02:00
|
|
|
@-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~
|