]> git.vomp.tv Git - vompserver.git/blob - Makefile
Fix for APIVERSNUM / NAME on old VDRs
[vompserver.git] / Makefile
1 #
2 # Makefile for a Video Disk Recorder plugin
3 #
4 # $Id$
5
6 # The official name of this plugin.
7 # This name will be used in the '-P...' option of VDR to load the plugin.
8 # By default the main source file also carries this name.
9
10 PLUGIN = vompserver
11
12 ### The version number of this plugin (taken from the main source file):
13
14 VERSION = $(shell grep 'static const char \*VERSION *=' $(PLUGIN).c | awk '{ print $$6 }' | sed -e 's/[";]//g')
15
16 ### The directory environment:
17
18 # Use package data if installed...otherwise assume we're under the VDR source directory:
19 PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc))
20 LIBDIR = $(call PKGCFG,libdir)
21 LOCDIR = $(call PKGCFG,locdir)
22 PLGCFG = $(call PKGCFG,plgcfg)
23 #
24 TMPDIR ?= /tmp
25
26 # VOMP INSERT for older VDRs
27 ifeq ($(VDRDIR),)
28   VDRDIR = ../../..
29   LIBDIR = ../../lib
30 endif
31
32 APIVERSNUM = $(shell grep 'define APIVERSNUM ' $(VDRDIR)/config.h | awk '{ print $$3 }' | sed -e 's/"//g')
33 DOOLDINSTALL = 0
34 ifeq ($(shell test $(APIVERSNUM) -le 10734; echo $$?),0) # thanks streamdev
35 DOOLDINSTALL = 1
36 endif
37 # end insert
38
39 ### The compiler options:
40
41 export CFLAGS   = $(call PKGCFG,cflags)
42 export CXXFLAGS = $(call PKGCFG,cxxflags)
43
44 # VOMP INSERT
45 CFLAGS += -fPIC
46 CXXFLAGS += -fPIC
47 # end insert
48
49 ### The version number of VDR's plugin API:
50
51 APIVERSION = $(call PKGCFG,apiversion)
52 # VOMP INSERT for older VDRs
53 ifeq ($(APIVERSION),)
54   APIVERSION = $(shell sed -ne '/define APIVERSION/s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h)
55 endif
56 # end VOMP INSERT
57
58 ### Allow user defined options to overwrite defaults:
59
60 -include $(PLGCFG)
61
62 ### The name of the distribution archive:
63
64 ARCHIVE = $(PLUGIN)-$(VERSION)
65 PACKAGE = vdr-$(ARCHIVE)
66
67 ### The name of the shared object file:
68
69 SOFILE = libvdr-$(PLUGIN).so
70
71 ### Includes and Defines (add further entries here):
72
73 INCLUDES +=
74
75 DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
76
77 # VOMP-INSERT
78 INCLUDES += -I$(VDRDIR)/include -I$(DVBDIR)/include
79
80 DEFINES += -D_GNU_SOURCE -DVOMPSERVER
81 DEFINES += -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE
82
83 # END-VOMP-INSERT
84
85
86 ### The object files (add further files here):
87
88 OBJS = $(PLUGIN).o
89
90 # VOMP-INSERT
91 OBJS += dsock.o mvpserver.o udpreplier.o bootpd.o tftpd.o i18n.o vompclient.o tcp.o \
92                    ringbuffer.o mvprelay.o vompclientrrproc.o \
93                    config.o log.o thread.o tftpclient.o \
94                    media.o responsepacket.o \
95                    mediafile.o mediaplayer.o servermediafile.o serialize.o medialauncher.o
96
97 OBJS2 = recplayer.o mvpreceiver.o
98 # END-VOMP-INSERT
99
100 ### The main target:
101
102 # VOMP-INSERT
103 all: allbase $(SOFILE) # i18n
104 standalone: standalonebase vompserver-standalone
105 # END-VOMP-INSERT
106
107 ### Implicit rules:
108
109 %.o: %.c
110         $(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $<
111
112 ### Dependencies:
113
114 MAKEDEP = $(CXX) -MM -MG
115 DEPFILE = .dependencies
116 $(DEPFILE): Makefile
117         @$(MAKEDEP) $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
118
119 -include $(DEPFILE)
120
121 ### Internationalization (I18N):
122
123 PODIR     = po
124 I18Npo    = $(wildcard $(PODIR)/*.po)
125 I18Nmo    = $(addsuffix .mo, $(foreach file, $(I18Npo), $(basename $(file))))
126 I18Nmsgs  = $(addprefix $(DESTDIR)$(LOCDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo, $(notdir $(foreach file, $(I18Npo), $(basename $(file))))))
127 I18Npot   = $(PODIR)/$(PLUGIN).pot
128
129 %.mo: %.po
130         msgfmt -c -o $@ $<
131
132 $(I18Npot): $(wildcard *.c)
133         xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-$(PLUGIN) --package-version=$(VERSION) --msgid-bugs-address='<see README>' -o $@ `ls $^`
134
135 %.po: $(I18Npot)
136         msgmerge -U --no-wrap --no-location --backup=none -q -N $@ $<
137         @touch $@
138
139 $(I18Nmsgs): $(DESTDIR)$(LOCDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo
140         install -D -m644 $< $@
141
142 .PHONY: i18n
143 i18n: $(I18Nmo) $(I18Npot)
144
145 install-i18n: $(I18Nmsgs)
146
147 ### Targets:
148
149 # rest of file modified for vomp
150
151 objectsstandalone: $(OBJS)
152 objects: $(OBJS) $(OBJS2)
153
154 allbase:
155         ( if [ -f .standalone ] ; then ( rm -f .standalone; make clean ; make objects ) ; else exit 0 ;fi )
156 standalonebase:
157         ( if [ ! -f .standalone ] ; then ( make clean; echo "DEFINES+=-DVOMPSTANDALONE" > .standalone; echo "DEFINES+=-D_FILE_OFFSET_BITS=64" >> .standalone; make objectsstandalone ) ; else exit 0 ;fi )
158
159 $(SOFILE): objects
160         $(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(OBJS2) -o $@
161         if [ -n "$(DOOLDINSTALL)" ]; then \
162 cp $@ $(LIBDIR)/$@.$(APIVERSION) ; \
163 fi
164
165 vompserver-standalone: objectsstandalone
166         $(CXX) $(CXXFLAGS) $(OBJS) -lpthread -o $@
167         chmod u+x $@
168
169 install-lib: $(SOFILE)
170         install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION)
171
172 install: install-lib install-i18n
173
174 dist: $(I18Npo) clean
175         @-rm -rf $(TMPDIR)/$(ARCHIVE)
176         @mkdir $(TMPDIR)/$(ARCHIVE)
177         @cp -a * $(TMPDIR)/$(ARCHIVE)
178         @tar czf $(PACKAGE).tgz -C $(TMPDIR) $(ARCHIVE)
179         @-rm -rf $(TMPDIR)/$(ARCHIVE)
180         @echo Distribution package created as $(PACKAGE).tgz
181
182 clean:
183         @-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
184         @-rm -f $(OBJS) $(OBJS2) $(DEPFILE) *.so *.tgz core* *~ .standalone vompserver-standalone