Makefile
author nathan
Sat, 29 Dec 2007 14:49:09 +0100
branchtrunk
changeset 2 4c1f7b705009
parent 0 474a1293c3c0
child 5 b33ec9d72c19
permissions -rw-r--r--
release 0.10.1
     1 #
     2 # MP3/MPlayer plugin to VDR
     3 #
     4 # (C) 2001-2007 Stefan Huelswitt <s.huelswitt@gmx.de>
     5 #
     6 # This code is free software; you can redistribute it and/or
     7 # modify it under the terms of the GNU General Public License
     8 # as published by the Free Software Foundation; either version 2
     9 # of the License, or (at your option) any later version.
    10 #
    11 # This code is distributed in the hope that it will be useful,
    12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
    13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    14 # GNU General Public License for more details.
    15 #
    16 # You should have received a copy of the GNU General Public License
    17 # along with this program; if not, write to the Free Software
    18 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
    19 # Or, point your browser to http://www.gnu.org/copyleft/gpl.html
    20 
    21 # You can change the compile options here or create a Make.config
    22 # in the VDR directory an set them there.
    23 
    24 ### uncomment one of these lines, if you don't want one of the plugins
    25 #WITHOUT_MP3=1
    26 #WITHOUT_MPLAYER=1
    27 
    28 ### uncomment the following line, if you don't have libsndfile installed
    29 #WITHOUT_LIBSNDFILE=1
    30 
    31 ### uncomment the following line, if you don't have libvorbisfile installed
    32 #WITHOUT_LIBVORBISFILE=1
    33 
    34 ### uncomment the following line, if you want OSS sound output
    35 #WITH_OSS_OUTPUT=1
    36 
    37 ### uncomment the following line, if you want to include debug symbols
    38 #DBG=1
    39 
    40 ### The C++ compiler and options:
    41 CXX      ?= g++
    42 CXXFLAGS ?= -O2 -fPIC -Wall -Woverloaded-virtual
    43 
    44 ###############################################
    45 ###############################################
    46 #
    47 # no user configurable options below this point
    48 #
    49 ###############################################
    50 ###############################################
    51 
    52 ### The directory environment:
    53 
    54 VDRDIR = ../../..
    55 LIBDIR = ../../lib
    56 TMPDIR = /tmp
    57 
    58 # The official name of this plugin.
    59 # This name will be used in the '-P...' option of VDR to load the plugin.
    60 # By default the main source file also carries this name.
    61 #
    62 PLUGIN  = mp3
    63 PLUGIN2 = mplayer
    64 
    65 ### Allow user defined options to overwrite defaults:
    66 
    67 -include $(VDRDIR)/Make.config
    68 
    69 ### The version number of this plugin (taken from the main source file):
    70 
    71 VERSION = $(shell grep 'define PLUGIN_VERSION' version.h | awk '{ print $$3 }' | sed -e 's/[";]//g')
    72 
    73 ### The version number of VDR (taken from VDR's "config.h"):
    74 
    75 VDRVERSION = $(shell sed -ne '/define VDRVERSION/ s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h)
    76 APIVERSION = $(shell sed -ne '/define APIVERSION/ s/^.*"\(.*\)".*$$/\1/p' $(VDRDIR)/config.h)
    77 ifeq ($(strip $(APIVERSION)),)
    78    APIVERSION = $(VDRVERSION)
    79 endif
    80 VDRVERSNUM = $(shell sed -ne '/define VDRVERSNUM/ s/^.[a-zA-Z ]*\([0-9]*\) .*$$/\1/p' $(VDRDIR)/config.h)
    81 APIVERSNUM = $(shell sed -ne '/define APIVERSNUM/ s/^.[a-zA-Z ]*\([0-9]*\) .*$$/\1/p' $(VDRDIR)/config.h)
    82 ifeq ($(strip $(APIVERSNUM)),)
    83    APIVERSNUM = $(VDRVERSNUM)
    84 endif
    85 
    86 ### The name of the distribution archive:
    87 
    88 ARCHIVE = $(PLUGIN)-$(VERSION)
    89 PACKAGE = vdr-$(ARCHIVE)
    90 
    91 ### Includes and Defines (add further entries here):
    92 
    93 INCLUDES += -I$(VDRDIR)/include
    94 DEFINES  += -D_GNU_SOURCE -DAPIVERSNUM=$(APIVERSNUM)
    95 
    96 ### The object files (add further files here):
    97 
    98 ifndef WITHOUT_MP3
    99   ALL += libvdr-$(PLUGIN).so
   100   ifneq ($(shell grep -l 'Phrases' $(VDRDIR)/i18n.c),$(VDRDIR)/i18n.c)
   101     ALL += i18n-$(PLUGIN)
   102   endif
   103 endif
   104 ifndef WITHOUT_MPLAYER
   105   ALL += libvdr-$(PLUGIN2).so
   106   ifneq ($(shell grep -l 'Phrases' $(VDRDIR)/i18n.c),$(VDRDIR)/i18n.c)
   107     ALL += i18n-$(PLUGIN2)
   108   endif
   109 endif
   110 
   111 COM_OBJS = i18n.o data.o menu.o
   112 
   113 OBJS     = $(PLUGIN).o $(COM_OBJS)\
   114             data-mp3.o setup-mp3.o player-mp3.o stream.o network.o\
   115             decoder.o decoder-mp3.o decoder-mp3-stream.o decoder-snd.o \
   116             decoder-ogg.o
   117 LIBS     = -lmad -lid3tag
   118 
   119 ifndef WITHOUT_LIBSNDFILE
   120   LIBS    += -lsndfile
   121   DEFINES += -DHAVE_SNDFILE
   122 endif
   123 ifndef WITHOUT_LIBVORBISFILE
   124   LIBS    += -lvorbisfile -lvorbis
   125   DEFINES += -DHAVE_VORBISFILE
   126 endif
   127 ifdef WITH_OSS_OUTPUT
   128   DEFINES += -DWITH_OSS
   129 endif
   130 ifdef BROKEN_PCM
   131   DEFINES += -DBROKEN_PCM
   132 endif
   133 
   134 OBJS2    = $(PLUGIN2).o $(COM_OBJS)\
   135             setup-mplayer.o player-mplayer.o
   136 LIBS2    = 
   137 
   138 ifeq ($(shell test -f $(VDRDIR)/fontsym.h ; echo $$?),0)
   139   DEFINES += -DHAVE_BEAUTYPATCH
   140 endif  
   141 
   142 ifdef DBG
   143   CXXFLAGS += -g
   144 endif
   145 
   146 ### Internationalization (I18N):
   147 
   148 PODIR     = po
   149 I18Npot   = $(PODIR)/mp3-mplayer.pot
   150 I18Npots  = $(notdir $(foreach file, $(wildcard $(PODIR)/*.po), $(basename $(file))))
   151 I18Nmsgs  = $(addprefix $(LOCALEDIR)/,$(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo,$(I18Npots)))
   152 I18Nmsgs2 = $(addprefix $(LOCALEDIR)/,$(addsuffix /LC_MESSAGES/vdr-$(PLUGIN2).mo,$(I18Npots)))
   153 LOCALEDIR = $(VDRDIR)/locale
   154 
   155 # Dependencies:
   156 
   157 MAKEDEP = g++ -MM -MG
   158 DEPFILE = .dependencies
   159 $(DEPFILE): Makefile
   160 	@$(MAKEDEP) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) $(OBJS2:%.o=%.c) > $@
   161 
   162 -include $(DEPFILE)
   163 
   164 ### Targets:
   165 
   166 all: $(ALL)
   167 .PHONY: i18n-$(PLUGIN) i18n-$(PLUGIN2)
   168 
   169 %.o: %.c
   170 	$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) $<
   171 
   172 libvdr-$(PLUGIN).so: $(OBJS)
   173 	$(CXX) $(CXXFLAGS) -shared $(OBJS) $(LIBS) -o $@
   174 	@cp $@ $(LIBDIR)/$@.$(APIVERSION)
   175 
   176 libvdr-$(PLUGIN2).so: $(OBJS2)
   177 	$(CXX) $(CXXFLAGS) -shared $(OBJS2) $(LIBS2) -o $@
   178 	@cp $@ $(LIBDIR)/$@.$(APIVERSION)
   179 
   180 $(I18Npot): $(shell grep -rl '\(tr\|trNOOP\)(\".*\")' *.c $(SYSDIR))
   181 	xgettext -C -cTRANSLATORS --no-wrap -F -k -ktr -ktrNOOP --msgid-bugs-address='<s.huelswitt@gmx.de>' -o $@ $^
   182 
   183 %.po: $(I18Npot)
   184 	msgmerge -U --no-wrap -F --backup=none -q $@ $<
   185 	@touch $@
   186 
   187 %.mo: %.po
   188 	msgfmt -c -o $@ $<
   189 
   190 $(I18Nmsgs): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo
   191 	@mkdir -p $(dir $@)
   192 	cp $< $@
   193 
   194 i18n-$(PLUGIN): $(I18Nmsgs)
   195 
   196 $(I18Nmsgs2): $(LOCALEDIR)/%/LC_MESSAGES/vdr-$(PLUGIN2).mo: $(PODIR)/%.mo
   197 	@mkdir -p $(dir $@)
   198 	cp $< $@
   199 
   200 i18n-$(PLUGIN2): $(I18Nmsgs2)
   201 
   202 dist: clean
   203 	@-rm -rf $(TMPDIR)/$(ARCHIVE)
   204 	@mkdir $(TMPDIR)/$(ARCHIVE)
   205 	@cp -a * $(TMPDIR)/$(ARCHIVE)
   206 	@tar czf $(PACKAGE).tar.gz -C $(TMPDIR) $(ARCHIVE)
   207 	@-rm -rf $(TMPDIR)/$(ARCHIVE)
   208 	@echo Distribution package created as $(PACKAGE).tar.gz
   209 
   210 clean:
   211 	@-rm -f $(OBJS) $(OBJS2) $(DEPFILE) libvdr-*.so $(PACKAGE).tar.gz core* *~
   212 	@-rm -f $(PODIR)/*.mo $(PODIR)/*.pot