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