vdr-plugin-skindesigner/Makefile

211 lines
6.3 KiB
Makefile
Raw Normal View History

2014-09-27 09:25:14 +02:00
#
# Makefile for a Video Disk Recorder plugin
#
# $Id$ Makefile 1.0 2014/07/24 louis Exp $
# Config
CONFIG := #-DDOPROFILE # enable profiling code
2014-09-27 09:25:14 +02:00
# The official name of this plugin.
PLUGIN = skindesigner
### The version number of this plugin (taken from the main source file):
VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ print $$6 }' | sed -e 's/[";]//g')
### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory:
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --silence-errors --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --silence-errors --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc))
2014-09-27 09:25:14 +02:00
LIBDIR = $(call PKGCFG,libdir)
LOCDIR = $(call PKGCFG,locdir)
PLGCFG = $(call PKGCFG,plgcfg)
VDRCONFDIR = $(call PKGCFG,configdir)
PLGRESDIR = $(call PKGCFG,resdir)/plugins/$(PLUGIN)
TMPDIR ?= /tmp
2015-01-06 06:07:48 +01:00
SKINDESIGNER_SCRIPTDIR ?= $(LIBDIR)/$(PLUGIN)/scripts
2014-09-27 09:25:14 +02:00
### The compiler options:
export CFLAGS = $(call PKGCFG,cflags)
export CXXFLAGS = $(call PKGCFG,cxxflags)
### Allow user defined options to overwrite defaults:
-include $(PLGCFG)
### The version number of VDR's plugin API:
APIVERSION = $(call PKGCFG,apiversion)
### The name of the distribution archive:
ARCHIVE = $(PLUGIN)-$(VERSION)
PACKAGE = vdr-$(ARCHIVE)
### The name of the shared object file:
SOFILE = libvdr-$(PLUGIN).so
### Includes and Defines and Dependencies:
DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"' $(CONFIG)
2014-09-27 09:25:14 +02:00
DEFINES += $(shell xml2-config --cflags)
2015-01-06 06:07:48 +01:00
DEFINES += -DSCRIPTFOLDER='"$(SKINDESIGNER_SCRIPTDIR)"'
2014-09-27 09:25:14 +02:00
INCLUDES += $(shell pkg-config --cflags freetype2 fontconfig)
2014-11-02 13:41:21 +01:00
INCLUDES += $(shell pkg-config --cflags librsvg-2.0 cairo-png) -ljpeg
LIBS += $(shell pkg-config --libs librsvg-2.0 cairo-png) -ljpeg
2014-10-28 19:38:11 +01:00
2014-09-27 09:25:14 +02:00
LIBS += $(shell xml2-config --libs)
### The object files:
OBJS = $(PLUGIN).o \
config.o \
setup.o \
designer.o \
displaychannel.o \
displaymenu.o \
displaymessage.o \
displayreplay.o \
displaytracks.o \
displayvolume.o \
displayplugin.o \
2015-03-12 17:28:35 +01:00
libcore/cairoimage.o \
2014-09-27 09:25:14 +02:00
libcore/pixmapcontainer.o \
libcore/fontmanager.o \
libcore/imagecache.o \
libcore/helpers.o \
libcore/imageloader.o \
libcore/recfolderinfo.o \
2015-01-19 09:23:15 +01:00
libcore/skinsetup.o \
2015-05-22 13:34:23 +02:00
libcore/skinrepo.o \
2014-10-20 17:35:52 +02:00
libcore/extrecinfo.o \
2014-09-27 09:25:14 +02:00
libcore/timers.o \
libtemplate/globals.o \
libtemplate/parameter.o \
libtemplate/template.o \
libtemplate/templateview.o \
libtemplate/templateviewelement.o \
libtemplate/templateviewlist.o \
2015-02-12 18:50:58 +01:00
libtemplate/templateviewgrid.o \
2014-09-27 09:25:14 +02:00
libtemplate/templatepixmap.o \
libtemplate/templateviewtab.o \
libtemplate/templatefunction.o \
libtemplate/templateloopfunction.o \
libtemplate/xmlparser.o \
views/animation.o \
2014-09-27 09:25:14 +02:00
views/view.o \
2015-02-12 18:50:58 +01:00
views/viewgrid.o \
2014-10-26 08:26:44 +01:00
views/viewhelpers.o \
views/displayviewelements.o \
2014-09-27 09:25:14 +02:00
views/displaychannelview.o \
views/displaymenurootview.o \
views/displaymenuview.o \
views/displaymenulistview.o \
views/displaymenuitemview.o \
views/displaymenuitemcurrentview.o \
views/displaymenudetailview.o \
views/displaymenutabview.o \
views/displaymessageview.o \
views/displayreplayview.o \
views/displayreplayonpauseview.o \
2014-09-27 09:25:14 +02:00
views/displayvolumeview.o \
2015-02-12 18:50:58 +01:00
views/displayaudiotracksview.o \
views/displaypluginview.o
2014-09-27 09:25:14 +02:00
### The main target:
2015-04-06 15:34:08 +02:00
all: subprojects $(SOFILE) i18n
### subprojects:
.PHONY: libskindesignerapi subprojects
libskindesignerapi:
$(MAKE) -C libskindesignerapi
subprojects: libskindesignerapi
install-subprojects:
$(MAKE) -C libskindesignerapi install
clean-subprojects:
$(MAKE) -C libskindesignerapi clean
### get version of subprojects in specific targets when subprojects have been built
%.o: SUB_DEFINES = -DLIBSKINDESIGNERAPIVERSION='"$(shell pkg-config --modversion libskindesignerapi/libskindesignerapi.pc)"'
$(SOFILE): SUB_LIBS = libskindesignerapi/libskindesignerapi.so.$(shell pkg-config --modversion libskindesignerapi/libskindesignerapi.pc)
2014-09-27 09:25:14 +02:00
### Implicit rules:
%.o: %.c
2015-04-06 15:34:08 +02:00
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(SUB_DEFINES) $(INCLUDES) -o $@ $<
2014-09-27 09:25:14 +02:00
### Dependencies:
MAKEDEP = $(CXX) -MM -MG
DEPFILE = .dependencies
$(DEPFILE): Makefile
@$(MAKEDEP) $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
-include $(DEPFILE)
### Internationalization (I18N):
PODIR = po
I18Npo = $(wildcard $(PODIR)/*.po)
I18Nmo = $(addsuffix .mo, $(foreach file, $(I18Npo), $(basename $(file))))
I18Nmsgs = $(addprefix $(DESTDIR)$(LOCDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo, $(notdir $(foreach file, $(I18Npo), $(basename $(file))))))
I18Npot = $(PODIR)/$(PLUGIN).pot
%.mo: %.po
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 $^`
%.po: $(I18Npot)
msgmerge -U --no-wrap --no-location --backup=none -q -N $@ $<
@touch $@
$(I18Nmsgs): $(DESTDIR)$(LOCDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo
install -D -m644 $< $@
.PHONY: i18n
i18n: $(I18Nmo) $(I18Npot)
install-i18n: $(I18Nmsgs)
### Targets:
$(SOFILE): $(OBJS)
2015-04-06 15:34:08 +02:00
$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) $(SUB_LIBS) -o $@
2014-09-27 09:25:14 +02:00
install-lib: $(SOFILE)
install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION)
install-themes:
mkdir -p $(DESTDIR)$(VDRCONFDIR)/themes
cp themes/* $(DESTDIR)$(VDRCONFDIR)/themes
install-skins:
mkdir -p $(DESTDIR)$(PLGRESDIR)/skins
cp -r skins/* $(DESTDIR)$(PLGRESDIR)/skins
mkdir -p $(DESTDIR)$(PLGRESDIR)/dtd
cp -r dtd/* $(DESTDIR)$(PLGRESDIR)/dtd
2014-09-27 09:25:14 +02:00
2015-01-06 06:07:48 +01:00
install-scripts:
mkdir -p $(DESTDIR)$(SKINDESIGNER_SCRIPTDIR)
cp -r scripts/* $(DESTDIR)$(SKINDESIGNER_SCRIPTDIR)
2015-04-06 15:34:08 +02:00
install: install-subprojects install-lib install-i18n install-themes install-skins install-scripts
2014-09-27 09:25:14 +02:00
dist: $(I18Npo) clean
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@mkdir $(TMPDIR)/$(ARCHIVE)
@cp -a * $(TMPDIR)/$(ARCHIVE)
@tar czf $(PACKAGE).tgz --exclude .git* --exclude *.o --exclude *.rej --exclude *.orig -C $(TMPDIR) $(ARCHIVE)
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@echo Distribution package created as $(PACKAGE).tgz
2015-04-06 15:34:08 +02:00
clean: clean-subprojects
2014-09-27 09:25:14 +02:00
@-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
@-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~