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