2004-12-30 23:43:55 +01:00
|
|
|
#
|
|
|
|
# Makefile for a Video Disk Recorder plugin
|
|
|
|
#
|
2008-04-07 16:50:32 +02:00
|
|
|
# $Id: Makefile,v 1.15 2008/04/07 14:50:32 schmirl Exp $
|
2004-12-30 23:43:55 +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 = streamdev
|
|
|
|
|
|
|
|
### The version number of this plugin (taken from the main source file):
|
|
|
|
|
|
|
|
VERSION = $(shell grep 'const char \*VERSION *=' common.c | awk '{ print $$5 }' | sed -e 's/[";]//g')
|
|
|
|
|
|
|
|
### The C++ compiler and options:
|
|
|
|
|
|
|
|
CXX ?= g++
|
2008-04-07 16:27:27 +02:00
|
|
|
CXXFLAGS ?= -fPIC -g -O2 -Wall -Woverloaded-virtual -Wno-parentheses
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
### The directory environment:
|
|
|
|
|
|
|
|
VDRDIR = ../../..
|
|
|
|
LIBDIR = ../../lib
|
|
|
|
TMPDIR = /tmp
|
|
|
|
|
|
|
|
### Allow user defined options to overwrite defaults:
|
|
|
|
|
|
|
|
-include $(VDRDIR)/Make.config
|
|
|
|
|
|
|
|
### The version number of VDR (taken from VDR's "config.h"):
|
|
|
|
|
2006-07-05 22:35:24 +02:00
|
|
|
APIVERSION = $(shell grep 'define APIVERSION ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g')
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
### The name of the distribution archive:
|
|
|
|
|
|
|
|
ARCHIVE = $(PLUGIN)-$(VERSION)
|
|
|
|
PACKAGE = vdr-$(ARCHIVE)
|
|
|
|
|
|
|
|
### Includes and Defines (add further entries here):
|
|
|
|
|
2008-04-07 16:27:27 +02:00
|
|
|
INCLUDES += -I$(VDRDIR)/include -I.
|
2004-12-30 23:43:55 +01:00
|
|
|
|
2008-04-07 16:50:32 +02:00
|
|
|
DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
### The object files (add further files here):
|
|
|
|
|
|
|
|
COMMONOBJS = common.o i18n.o \
|
|
|
|
\
|
2005-02-10 23:24:26 +01:00
|
|
|
tools/source.o tools/select.o tools/socket.o tools/tools.o
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
CLIENTOBJS = $(PLUGIN)-client.o \
|
|
|
|
\
|
2005-04-24 18:19:14 +02:00
|
|
|
client/socket.o client/device.o client/setup.o \
|
2008-04-07 16:40:39 +02:00
|
|
|
client/filter.o
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
|
|
|
|
SERVEROBJS = $(PLUGIN)-server.o \
|
|
|
|
\
|
|
|
|
server/server.o server/connectionVTP.o server/connectionHTTP.o \
|
|
|
|
server/componentHTTP.o server/componentVTP.o server/connection.o \
|
|
|
|
server/component.o server/suspend.o server/setup.o server/streamer.o \
|
2008-03-28 16:11:40 +01:00
|
|
|
server/livestreamer.o server/livefilter.o server/menuHTTP.o \
|
2004-12-30 23:43:55 +01:00
|
|
|
\
|
2005-02-11 17:44:14 +01:00
|
|
|
remux/tsremux.o remux/ts2ps.o remux/ts2es.o remux/extern.o
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
ifdef DEBUG
|
|
|
|
DEFINES += -DDEBUG
|
|
|
|
endif
|
|
|
|
|
2008-02-11 17:13:46 +01:00
|
|
|
### The main target:
|
|
|
|
|
|
|
|
.PHONY: all dist clean
|
|
|
|
all: libvdr-$(PLUGIN)-client.so libvdr-$(PLUGIN)-server.so
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
### Implicit rules:
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $<
|
|
|
|
|
|
|
|
# Dependencies:
|
|
|
|
|
2008-04-07 16:27:27 +02:00
|
|
|
MAKEDEP = $(CXX) -MM -MG
|
2004-12-30 23:43:55 +01:00
|
|
|
DEPFILE = .dependencies
|
|
|
|
ifdef GCC3
|
|
|
|
$(DEPFILE): Makefile
|
|
|
|
@rm -f $@
|
|
|
|
@for i in $(CLIENTOBJS:%.o=%.c) $(SERVEROBJS:%.o=%.c) $(COMMONOBJS:%.o=%.c) ; do \
|
|
|
|
$(MAKEDEP) $(DEFINES) $(INCLUDES) -MT "`dirname $$i`/`basename $$i .c`.o" $$i >>$@ ; \
|
|
|
|
done
|
|
|
|
else
|
|
|
|
$(DEPFILE): Makefile
|
|
|
|
@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(CLIENTOBJS:%.o=%.c) $(SERVEROBJS:%.o=%.c) \
|
|
|
|
$(COMMONOBJS:%.o=%.c) > $@
|
|
|
|
endif
|
|
|
|
|
|
|
|
-include $(DEPFILE)
|
|
|
|
|
|
|
|
### Targets:
|
|
|
|
|
2008-04-07 16:40:39 +02:00
|
|
|
libdvbmpeg/libdvbmpegtools.a: libdvbmpeg/*.c libdvbmpeg/*.h
|
2008-03-12 10:36:27 +01:00
|
|
|
$(MAKE) -C ./libdvbmpeg libdvbmpegtools.a
|
2008-02-11 17:13:46 +01:00
|
|
|
|
2004-12-30 23:43:55 +01:00
|
|
|
libvdr-$(PLUGIN)-client.so: $(CLIENTOBJS) $(COMMONOBJS) libdvbmpeg/libdvbmpegtools.a
|
|
|
|
libvdr-$(PLUGIN)-server.so: $(SERVEROBJS) $(COMMONOBJS) libdvbmpeg/libdvbmpegtools.a
|
|
|
|
|
|
|
|
%.so:
|
|
|
|
$(CXX) $(CXXFLAGS) -shared $^ -o $@
|
2006-07-05 22:35:24 +02:00
|
|
|
@cp $@ $(LIBDIR)/$@.$(APIVERSION)
|
2004-12-30 23:43:55 +01:00
|
|
|
|
|
|
|
dist: clean
|
|
|
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@mkdir $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@cp -a * $(TMPDIR)/$(ARCHIVE)
|
2008-03-31 12:34:26 +02:00
|
|
|
@tar czf $(PACKAGE).tgz --exclude CVS -C $(TMPDIR) $(ARCHIVE)
|
2004-12-30 23:43:55 +01:00
|
|
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@echo Distribution package created as $(PACKAGE).tgz
|
|
|
|
|
|
|
|
clean:
|
|
|
|
@-rm -f $(COMMONOBJS) $(CLIENTOBJS) $(SERVEROBJS) $(DEPFILE) *.so *.tgz core* *~
|
2008-03-12 10:36:27 +01:00
|
|
|
$(MAKE) -C ./libdvbmpeg clean
|