2005-08-27 16:42:28 +02:00
|
|
|
#
|
|
|
|
# Makefile for a Video Disk Recorder plugin
|
|
|
|
#
|
2012-12-29 10:31:33 +01:00
|
|
|
# $Id: Makefile 2.13 2012/12/29 10:29:24 kls Exp $
|
2005-08-27 16:42:28 +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.
|
2012-12-19 12:10:28 +01:00
|
|
|
|
2005-08-27 16:42:28 +02:00
|
|
|
PLUGIN = svdrpdemo
|
|
|
|
|
|
|
|
### 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:
|
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
# Use package data if installed...otherwise assume we're under the VDR source directory:
|
2012-12-23 10:05:22 +01:00
|
|
|
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc))
|
|
|
|
LIBDIR = $(DESTDIR)$(call PKGCFG,libdir)
|
2012-12-28 10:09:41 +01:00
|
|
|
PLGCFG = $(call PKGCFG,plgcfg)
|
2012-12-19 12:10:28 +01:00
|
|
|
#
|
2012-01-18 12:40:17 +01:00
|
|
|
TMPDIR ?= /tmp
|
2005-08-27 16:42:28 +02:00
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
### The compiler options:
|
2005-08-27 16:42:28 +02:00
|
|
|
|
2012-12-22 12:08:31 +01:00
|
|
|
export CFLAGS = $(call PKGCFG,cflags)
|
|
|
|
export CXXFLAGS = $(call PKGCFG,cxxflags)
|
2005-08-27 16:42:28 +02:00
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
### The version number of VDR's plugin API:
|
2005-08-27 16:42:28 +02:00
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
APIVERSION = $(call PKGCFG,apiversion)
|
2005-08-27 16:42:28 +02:00
|
|
|
|
2012-12-28 10:09:41 +01:00
|
|
|
### Allow user defined options to overwrite defaults:
|
|
|
|
|
|
|
|
-include $(PLGCFG)
|
|
|
|
|
2005-08-27 16:42:28 +02:00
|
|
|
### The name of the distribution archive:
|
|
|
|
|
|
|
|
ARCHIVE = $(PLUGIN)-$(VERSION)
|
|
|
|
PACKAGE = vdr-$(ARCHIVE)
|
|
|
|
|
2012-12-21 10:14:32 +01:00
|
|
|
### The name of the shared object file:
|
|
|
|
|
|
|
|
SOFILE = libvdr-$(PLUGIN).so
|
|
|
|
|
2005-08-27 16:42:28 +02:00
|
|
|
### Includes and Defines (add further entries here):
|
|
|
|
|
2012-12-21 10:14:32 +01:00
|
|
|
INCLUDES +=
|
2005-08-27 16:42:28 +02:00
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
|
2005-08-27 16:42:28 +02:00
|
|
|
|
|
|
|
### The object files (add further files here):
|
|
|
|
|
|
|
|
OBJS = $(PLUGIN).o
|
|
|
|
|
2007-08-15 13:20:04 +02:00
|
|
|
### The main target:
|
|
|
|
|
2012-12-21 10:14:32 +01:00
|
|
|
all: $(SOFILE)
|
2007-08-15 13:20:04 +02:00
|
|
|
|
2005-08-27 16:42:28 +02:00
|
|
|
### Implicit rules:
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
|
|
|
|
|
2012-12-19 12:10:28 +01:00
|
|
|
### Dependencies:
|
2005-08-27 16:42:28 +02:00
|
|
|
|
|
|
|
MAKEDEP = $(CXX) -MM -MG
|
|
|
|
DEPFILE = .dependencies
|
|
|
|
$(DEPFILE): Makefile
|
|
|
|
@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
|
|
|
|
|
|
|
|
-include $(DEPFILE)
|
|
|
|
|
|
|
|
### Targets:
|
|
|
|
|
2012-12-21 10:14:32 +01:00
|
|
|
$(SOFILE): $(OBJS)
|
2010-12-26 12:11:58 +01:00
|
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@
|
2012-12-21 10:14:32 +01:00
|
|
|
|
|
|
|
install-lib: $(SOFILE)
|
2012-12-22 12:08:31 +01:00
|
|
|
install -D $^ $(LIBDIR)/$^.$(APIVERSION)
|
2012-12-21 10:14:32 +01:00
|
|
|
|
|
|
|
install: install-lib
|
2005-08-27 16:42:28 +02:00
|
|
|
|
|
|
|
dist: clean
|
|
|
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@mkdir $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@cp -a * $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@tar czf $(PACKAGE).tgz -C $(TMPDIR) $(ARCHIVE)
|
|
|
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@echo Distribution package created as $(PACKAGE).tgz
|
|
|
|
|
|
|
|
clean:
|
|
|
|
@-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~
|