2004-02-15 03:20:00 +01:00
|
|
|
#
|
|
|
|
# Makefile for a Video Disk Recorder plugin
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
2006-03-08 03:20:00 +01:00
|
|
|
# Debugging on/off
|
|
|
|
#FEMON_DEBUG = 1
|
|
|
|
|
|
|
|
# NTSC on/off
|
|
|
|
#FEMON_NTSC = 1
|
|
|
|
|
2004-02-15 03:20:00 +01: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.
|
|
|
|
#
|
|
|
|
PLUGIN = femon
|
|
|
|
|
|
|
|
### The version number of this plugin (taken from the main source file):
|
|
|
|
|
2006-04-20 03:20:00 +02:00
|
|
|
VERSION = $(shell grep 'static const char VERSION\[\] *=' $(PLUGIN).h | awk '{ print $$6 }' | sed -e 's/[";]//g')
|
2004-02-15 03:20:00 +01:00
|
|
|
|
|
|
|
### The C++ compiler and options:
|
|
|
|
|
|
|
|
CXX ?= g++
|
2005-11-13 03:20:00 +01:00
|
|
|
CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual
|
2004-02-15 03:20:00 +01:00
|
|
|
|
|
|
|
### The directory environment:
|
|
|
|
|
|
|
|
VDRDIR = ../../..
|
|
|
|
LIBDIR = ../../lib
|
|
|
|
TMPDIR = /tmp
|
|
|
|
|
|
|
|
### Allow user defined options to overwrite defaults:
|
|
|
|
|
|
|
|
-include $(VDRDIR)/Make.config
|
|
|
|
|
2006-04-20 03:20:00 +02:00
|
|
|
### The version number of VDR's plugin API (taken from VDR's "config.h"):
|
2004-02-15 03:20:00 +01:00
|
|
|
|
2006-04-20 03:20:00 +02:00
|
|
|
APIVERSION = $(shell grep 'define APIVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g')
|
2004-02-15 03:20:00 +01:00
|
|
|
|
|
|
|
### The name of the distribution archive:
|
|
|
|
|
|
|
|
ARCHIVE = $(PLUGIN)-$(VERSION)
|
|
|
|
PACKAGE = vdr-$(ARCHIVE)
|
|
|
|
|
|
|
|
### Includes and Defines (add further entries here):
|
|
|
|
|
2006-04-20 03:20:00 +02:00
|
|
|
INCLUDES += -I$(VDRDIR)/include
|
2004-02-15 03:20:00 +01:00
|
|
|
|
|
|
|
DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
|
|
|
|
|
2005-05-20 03:20:00 +02:00
|
|
|
ifdef FEMON_NTSC
|
2006-03-08 03:20:00 +01:00
|
|
|
DEFINES += -DNTSC
|
2004-08-18 03:20:00 +02:00
|
|
|
endif
|
|
|
|
|
2005-05-20 03:20:00 +02:00
|
|
|
ifdef FEMON_DEBUG
|
2006-03-08 03:20:00 +01:00
|
|
|
DEFINES += -DDEBUG
|
2005-02-24 03:20:00 +01:00
|
|
|
endif
|
|
|
|
|
2005-04-01 03:20:00 +02:00
|
|
|
.PHONY: all all-redirect
|
|
|
|
all-redirect: all
|
|
|
|
|
2004-02-15 03:20:00 +01:00
|
|
|
### The object files (add further files here):
|
|
|
|
|
2005-08-28 03:20:00 +02:00
|
|
|
OBJS = femon.o femonosd.o femonreceiver.o femoncfg.o femoni18n.o femontools.o
|
2004-02-15 03:20:00 +01:00
|
|
|
|
|
|
|
### Implicit rules:
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
|
|
|
|
|
|
|
|
# Dependencies:
|
|
|
|
|
|
|
|
MAKEDEP = g++ -MM -MG
|
|
|
|
DEPFILE = .dependencies
|
|
|
|
$(DEPFILE): Makefile
|
|
|
|
@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
|
|
|
|
|
|
|
|
-include $(DEPFILE)
|
|
|
|
|
|
|
|
### Targets:
|
|
|
|
|
|
|
|
all: libvdr-$(PLUGIN).so
|
|
|
|
|
|
|
|
libvdr-$(PLUGIN).so: $(OBJS)
|
|
|
|
$(CXX) $(CXXFLAGS) -shared $(OBJS) -o $@
|
2005-07-23 03:20:00 +02:00
|
|
|
ifndef FEMON_DEBUG
|
2006-04-20 03:20:00 +02:00
|
|
|
@strip $@
|
2005-07-23 03:20:00 +02:00
|
|
|
endif
|
2006-04-20 03:20:00 +02:00
|
|
|
@cp $@ $(LIBDIR)/$@.$(APIVERSION)
|
2004-02-15 03:20:00 +01: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* *~
|