vdr/PLUGINS/src/status/Makefile

95 lines
2.2 KiB
Makefile
Raw Normal View History

2002-06-16 13:26:00 +02:00
#
# Makefile for a Video Disk Recorder plugin
#
2013-01-12 13:50:17 +01:00
# $Id: Makefile 2.15 2013/01/12 13:45:01 kls Exp $
2002-06-16 13:26:00 +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.
2002-06-16 13:26:00 +02:00
PLUGIN = status
### 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 --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc))
LIBDIR = $(call PKGCFG,libdir)
PLGCFG = $(call PKGCFG,plgcfg)
#
2012-01-18 12:40:17 +01:00
TMPDIR ?= /tmp
2002-06-16 13:26:00 +02:00
### The compiler options:
export CFLAGS = $(call PKGCFG,cflags)
export CXXFLAGS = $(call PKGCFG,cxxflags)
### The version number of VDR's plugin API:
2002-06-16 13:26:00 +02:00
APIVERSION = $(call PKGCFG,apiversion)
2002-06-16 13:26:00 +02:00
### Allow user defined options to overwrite defaults:
-include $(PLGCFG)
2002-06-16 13:26:00 +02:00
### The name of the distribution archive:
ARCHIVE = $(PLUGIN)-$(VERSION)
PACKAGE = vdr-$(ARCHIVE)
### The name of the shared object file:
SOFILE = libvdr-$(PLUGIN).so
2002-06-16 13:26:00 +02:00
### Includes and Defines (add further entries here):
INCLUDES +=
2002-06-16 13:26:00 +02:00
DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
2002-06-16 13:26:00 +02:00
### The object files (add further files here):
OBJS = $(PLUGIN).o
### The main target:
all: $(SOFILE)
2002-06-16 13:26:00 +02:00
### Implicit rules:
%.o: %.c
2013-01-12 13:50:17 +01:00
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $<
2002-06-16 13:26:00 +02:00
### Dependencies:
2002-06-16 13:26:00 +02:00
2012-01-18 12:40:17 +01:00
MAKEDEP = $(CXX) -MM -MG
2002-06-16 13:26:00 +02:00
DEPFILE = .dependencies
$(DEPFILE): Makefile
@$(MAKEDEP) $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
2002-06-16 13:26:00 +02:00
-include $(DEPFILE)
### Targets:
$(SOFILE): $(OBJS)
$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) -o $@
install-lib: $(SOFILE)
install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION)
install: install-lib
2002-06-16 13:26:00 +02:00
dist: clean
2002-06-16 13:26:00 +02:00
@-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* *~