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

« back to all changes in this revision

Viewing changes to sflphone-client-gnome/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:
86
86
am__base_list = \
87
87
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
88
88
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
89
 
am__installdirs = "$(DESTDIR)$(appsdir)" "$(DESTDIR)$(log4crcdir)" \
 
89
am__installdirs = "$(DESTDIR)$(appsdir)" "$(DESTDIR)$(schemadir)" \
90
90
        "$(DESTDIR)$(uidir)"
91
 
DATA = $(apps_DATA) $(log4crc_DATA) $(ui_DATA)
 
91
DATA = $(apps_DATA) $(schema_DATA) $(ui_DATA)
92
92
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
93
93
  distclean-recursive maintainer-clean-recursive
94
94
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
143
143
AWK = @AWK@
144
144
CC = @CC@
145
145
CCDEPMODE = @CCDEPMODE@
146
 
CFLAGS = @CFLAGS@
 
146
CFLAGS = -Wall -Werror -Wextra
147
147
CHECK_CFLAGS = @CHECK_CFLAGS@
148
148
CHECK_LIBS = @CHECK_LIBS@
149
149
CPP = @CPP@
165
165
EGREP = @EGREP@
166
166
EXEEXT = @EXEEXT@
167
167
FGREP = @FGREP@
 
168
GCONF_SCHEMA_CONFIG_SOURCE = @GCONF_SCHEMA_CONFIG_SOURCE@
 
169
GCONF_SCHEMA_FILE_DIR = @GCONF_SCHEMA_FILE_DIR@
168
170
GREP = @GREP@
169
171
GTK216_CFLAGS = @GTK216_CFLAGS@
170
172
GTK216_LIBS = @GTK216_LIBS@
202
204
PACKAGE_VERSION = @PACKAGE_VERSION@
203
205
PATH_SEPARATOR = @PATH_SEPARATOR@
204
206
PKG_CONFIG = @PKG_CONFIG@
 
207
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
 
208
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
205
209
RANLIB = @RANLIB@
206
210
SED = @SED@
207
211
SET_MAKE = @SET_MAKE@
260
264
top_build_prefix = @top_build_prefix@
261
265
top_builddir = @top_builddir@
262
266
top_srcdir = @top_srcdir@
263
 
SUBDIRS = src pixmaps tests man po doc
 
267
SUBDIRS = src pixmaps webkit tests man po doc
264
268
ACLOCAL_AMFLAGS = -I m4
 
269
GCONFTOOL = gconftool-2
265
270
GNOME_DOC = gnome-doc-utils.make
266
 
log4crc_DATA = log4crc
267
 
log4crcdir = $(datadir)/sflphone
268
271
uidir = $(datadir)/sflphone/ui
269
272
ui_DATA = src/ui.xml
270
 
EXTRA_DIST = $(log4crc_DATA) sflphone.desktop.in $(GNOME_DOC) m4 $(UI_DATA)
 
273
schemadir = @GCONF_SCHEMA_FILE_DIR@
 
274
schema_DATA = sflphone-client-gnome.schemas
 
275
EXTRA_DIST = sflphone.desktop.in $(GNOME_DOC) m4 $(UI_DATA) $(schema_DATA)
271
276
appsdir = $(datadir)/applications
272
277
apps_in_files = sflphone.desktop.in
273
278
apps_DATA = $(apps_in_files:.desktop.in=.desktop)
274
279
#@INTLTOOL_DESKTOP_RULE@
275
 
DISTCLEANFILES = sflphone.desktop $(GNOME_DOC)
 
280
DISTCLEANFILES = sflphone.desktop $(GNOME_DOC) 
276
281
all: config.h
277
282
        $(MAKE) $(AM_MAKEFLAGS) all-recursive
278
283
 
359
364
        test -n "$$files" || exit 0; \
360
365
        echo " ( cd '$(DESTDIR)$(appsdir)' && rm -f" $$files ")"; \
361
366
        cd "$(DESTDIR)$(appsdir)" && rm -f $$files
362
 
install-log4crcDATA: $(log4crc_DATA)
 
367
install-schemaDATA: $(schema_DATA)
363
368
        @$(NORMAL_INSTALL)
364
 
        test -z "$(log4crcdir)" || $(MKDIR_P) "$(DESTDIR)$(log4crcdir)"
365
 
        @list='$(log4crc_DATA)'; test -n "$(log4crcdir)" || list=; \
 
369
        test -z "$(schemadir)" || $(MKDIR_P) "$(DESTDIR)$(schemadir)"
 
370
        @list='$(schema_DATA)'; test -n "$(schemadir)" || list=; \
366
371
        for p in $$list; do \
367
372
          if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
368
373
          echo "$$d$$p"; \
369
374
        done | $(am__base_list) | \
370
375
        while read files; do \
371
 
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(log4crcdir)'"; \
372
 
          $(INSTALL_DATA) $$files "$(DESTDIR)$(log4crcdir)" || exit $$?; \
 
376
          echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(schemadir)'"; \
 
377
          $(INSTALL_DATA) $$files "$(DESTDIR)$(schemadir)" || exit $$?; \
373
378
        done
374
379
 
375
 
uninstall-log4crcDATA:
 
380
uninstall-schemaDATA:
376
381
        @$(NORMAL_UNINSTALL)
377
 
        @list='$(log4crc_DATA)'; test -n "$(log4crcdir)" || list=; \
 
382
        @list='$(schema_DATA)'; test -n "$(schemadir)" || list=; \
378
383
        files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
379
384
        test -n "$$files" || exit 0; \
380
 
        echo " ( cd '$(DESTDIR)$(log4crcdir)' && rm -f" $$files ")"; \
381
 
        cd "$(DESTDIR)$(log4crcdir)" && rm -f $$files
 
385
        echo " ( cd '$(DESTDIR)$(schemadir)' && rm -f" $$files ")"; \
 
386
        cd "$(DESTDIR)$(schemadir)" && rm -f $$files
382
387
install-uiDATA: $(ui_DATA)
383
388
        @$(NORMAL_INSTALL)
384
389
        test -z "$(uidir)" || $(MKDIR_P) "$(DESTDIR)$(uidir)"
715
720
all-am: Makefile $(DATA) config.h
716
721
installdirs: installdirs-recursive
717
722
installdirs-am:
718
 
        for dir in "$(DESTDIR)$(appsdir)" "$(DESTDIR)$(log4crcdir)" "$(DESTDIR)$(uidir)"; do \
 
723
        for dir in "$(DESTDIR)$(appsdir)" "$(DESTDIR)$(schemadir)" "$(DESTDIR)$(uidir)"; do \
719
724
          test -z "$$dir" || $(MKDIR_P) "$$dir"; \
720
725
        done
721
726
install: install-recursive
766
771
 
767
772
info-am:
768
773
 
769
 
install-data-am: install-appsDATA install-log4crcDATA install-uiDATA
 
774
install-data-am: install-appsDATA install-data-local \
 
775
        install-schemaDATA install-uiDATA
770
776
 
771
777
install-dvi: install-dvi-recursive
772
778
 
812
818
 
813
819
ps-am:
814
820
 
815
 
uninstall-am: uninstall-appsDATA uninstall-log4crcDATA \
816
 
        uninstall-uiDATA
 
821
uninstall-am: uninstall-appsDATA uninstall-schemaDATA uninstall-uiDATA
817
822
 
818
823
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
819
824
        ctags-recursive install-am install-strip tags-recursive
826
831
        distclean-libtool distclean-tags distcleancheck distdir \
827
832
        distuninstallcheck dvi dvi-am html html-am info info-am \
828
833
        install install-am install-appsDATA install-data \
829
 
        install-data-am install-dvi install-dvi-am install-exec \
830
 
        install-exec-am install-html install-html-am install-info \
831
 
        install-info-am install-log4crcDATA install-man install-pdf \
832
 
        install-pdf-am install-ps install-ps-am install-strip \
833
 
        install-uiDATA installcheck installcheck-am installdirs \
834
 
        installdirs-am maintainer-clean maintainer-clean-generic \
835
 
        mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
836
 
        ps ps-am tags tags-recursive uninstall uninstall-am \
837
 
        uninstall-appsDATA uninstall-log4crcDATA uninstall-uiDATA
838
 
 
 
834
        install-data-am install-data-local install-dvi install-dvi-am \
 
835
        install-exec install-exec-am install-html install-html-am \
 
836
        install-info install-info-am install-man install-pdf \
 
837
        install-pdf-am install-ps install-ps-am install-schemaDATA \
 
838
        install-strip install-uiDATA installcheck installcheck-am \
 
839
        installdirs installdirs-am maintainer-clean \
 
840
        maintainer-clean-generic mostlyclean mostlyclean-generic \
 
841
        mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
 
842
        uninstall uninstall-am uninstall-appsDATA uninstall-schemaDATA \
 
843
        uninstall-uiDATA
 
844
 
 
845
 
 
846
install-data-local:
 
847
        GCONF_CONFIG_SOURCE=$(GCONF_SCHEMA_CONFIG_SOURCE) $(GCONFTOOL) --makefile-install-rule $(schema_DATA)
839
848
 
840
849
# Tell versions [3.59,3.63) of GNU make to not export all variables.
841
850
# Otherwise a system limit (for SysV at least) may be exceeded.