~ubuntu-branches/ubuntu/saucy/sflphone/saucy

« back to all changes in this revision

Viewing changes to sflphone-common/src/plug-in/Makefile.in

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2010-12-24 16:33:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101224163355-tkvvikqxbrbav6up
Tags: 0.9.11-1
* New upstream release
* Add new build dependencies on libwebkit-dev and libyaml-dev

* Bump Standards-Version up to 3.9.1
* Bump debhelper compatibility to 8
* Patch another typo in the upstream code (lintian notice)

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
 
16
16
@SET_MAKE@
17
17
 
 
18
# Global variables
 
19
 
 
20
#CXXFLAGS=-Wall -Werror -Wextra
 
21
 
18
22
VPATH = @srcdir@
19
23
pkgdatadir = $(datadir)/@PACKAGE@
20
24
pkgincludedir = $(includedir)/@PACKAGE@
204
208
PKGADD_PKG = @PKGADD_PKG@
205
209
PKGADD_VENDOR = @PKGADD_VENDOR@
206
210
PKG_CONFIG = @PKG_CONFIG@
 
211
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 
212
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
207
213
PULSEAUDIO_CFLAGS = @PULSEAUDIO_CFLAGS@
208
214
PULSEAUDIO_LIBS = @PULSEAUDIO_LIBS@
209
215
RANLIB = @RANLIB@
287
293
top_srcdir = @top_srcdir@
288
294
xml_CFLAGS = @xml_CFLAGS@
289
295
xml_LIBS = @xml_LIBS@
290
 
 
291
 
# Global variables
 
296
yaml_CFLAGS = @yaml_CFLAGS@
 
297
yaml_LIBS = @yaml_LIBS@
292
298
src = $(top_srcdir)
293
299
sfllibdir = $(DESTDIR)$(libdir)/sflphone
294
300
sflcodecdir = $(sfllibdir)/codecs
295
301
sflplugindir = $(sfllibdir)/plugins
296
 
ASTYLERC = "../astylerc"
 
302
ASTYLERC = "$(top_srcdir)/../astylerc"
297
303
indent = "/usr/bin/astyle"
298
304
 
299
305
# for pjsip
337
343
        -DPREFIX=\"$(prefix)\" \
338
344
        -DPROGSHAREDIR=\"${datadir}/sflphone\" \
339
345
        $(ZEROCONFFLAGS) \
 
346
        $(GSTREAMER_CFLAGS) \
 
347
        $(LIBAVCODEC_CFLAGS) \
 
348
        $(LIBSWSCALE_CFLAGS) \
340
349
        $(IAX_FLAGS) \
341
350
        $(SIP_CFLAGS) \
342
351
        -DCODECS_DIR=\""$(sflcodecdir)"\" \
345
354
         $(SPEEXCODEC) \
346
355
         $(GSMCODEC)
347
356
 
348
 
SUBDIRS = audiorecorder test
 
357
SUBDIRS = test
349
358
noinst_LTLIBRARIES = libplugin.la
350
359
libplugin_la_SOURCES = \
351
360
                pluginmanager.cpp \
749
758
        uninstall uninstall-am
750
759
 
751
760
 
 
761
indent:
 
762
        @echo "Indenting code:"
 
763
        if [ -f $(ASTYLERC) ] ; then \
 
764
                find $(top_srcdir)/src/ -regex ".*\.\(h\|cpp\)" -exec $(indent) --options=$(ASTYLERC) {} \; ; \
 
765
        fi
 
766
 
752
767
# Tell versions [3.59,3.63) of GNU make to not export all variables.
753
768
# Otherwise a system limit (for SysV at least) may be exceeded.
754
769
.NOEXPORT: