~ubuntu-branches/ubuntu/raring/banshee/raring

« back to all changes in this revision

Viewing changes to src/Dap/Banshee.Dap.AppleDevice/Makefile.in

  • Committer: Package Import Robot
  • Author(s): Chow Loong Jin
  • Date: 2012-01-23 23:16:49 UTC
  • mfrom: (6.3.22 experimental)
  • Revision ID: package-import@ubuntu.com-20120123231649-safm1f8eycltcgsf
Tags: 2.3.4.ds-1ubuntu1
* Merge from Debian Experimental, remaining changes:
  + Enable and recommend SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Enable and suggest u1ms
  + Move desktop file for Meego UI to /usr/share/une/applications
  + Change the url for the Amazon store redirector
  + [08dea2c] Revert "Fix invalid cast causing ftbfs with libgpod"
* [b617fe0] Convert Ubuntu-specific patches to gbp-pq patches
* Also fixes Launchpad bugs:
  - Fixes race condition while starting (LP: #766303)

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
build_triplet = @build@
36
36
host_triplet = @host@
37
37
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
 
38
        $(top_srcdir)/build/build.dist.mk \
38
39
        $(top_srcdir)/build/build.environment.mk \
39
40
        $(top_srcdir)/build/build.mk \
40
41
        $(top_srcdir)/build/build.rules.mk
585
586
 
586
587
# Build path to allow running uninstalled
587
588
@ENABLE_APPLEDEVICE_TRUE@RUN_PATH = $(subst $(space),$(colon), $(MONO_BASE_PATH))
588
 
@ENABLE_APPLEDEVICE_TRUE@UNIQUE_FILTER_PIPE = tr [:space:] \\n | sort | uniq
589
 
@ENABLE_APPLEDEVICE_TRUE@BUILD_DATA_DIR = $(top_builddir)/bin/share/$(PACKAGE)
 
589
@ENABLE_APPLEDEVICE_FALSE@SOURCES_BUILD = $(addprefix $(srcdir)/, \
 
590
@ENABLE_APPLEDEVICE_FALSE@      $(SOURCES)) \
 
591
@ENABLE_APPLEDEVICE_FALSE@      $(top_srcdir)/src/AssemblyInfo.cs
590
592
@ENABLE_APPLEDEVICE_TRUE@SOURCES_BUILD = $(addprefix $(srcdir)/, \
591
593
@ENABLE_APPLEDEVICE_TRUE@       $(SOURCES)) \
592
594
@ENABLE_APPLEDEVICE_TRUE@       $(top_srcdir)/src/AssemblyInfo.cs
 
595
@ENABLE_APPLEDEVICE_FALSE@RESOURCES_EXPANDED = $(addprefix $(srcdir)/, $(RESOURCES))
593
596
@ENABLE_APPLEDEVICE_TRUE@RESOURCES_EXPANDED = $(addprefix $(srcdir)/, $(RESOURCES))
 
597
@ENABLE_APPLEDEVICE_FALSE@RESOURCES_BUILD = $(foreach resource, $(RESOURCES_EXPANDED), \
 
598
@ENABLE_APPLEDEVICE_FALSE@      -resource:$(resource),$(notdir $(resource)))
 
599
 
594
600
@ENABLE_APPLEDEVICE_TRUE@RESOURCES_BUILD = $(foreach resource, $(RESOURCES_EXPANDED), \
595
601
@ENABLE_APPLEDEVICE_TRUE@       -resource:$(resource),$(notdir $(resource)))
596
602
 
597
 
@ENABLE_APPLEDEVICE_TRUE@INSTALL_ICONS = $(top_srcdir)/build/private-icon-theme-installer "$(mkinstalldirs)" "$(INSTALL_DATA)"
 
603
@ENABLE_APPLEDEVICE_FALSE@THEME_ICONS_SOURCE = $(wildcard $(srcdir)/ThemeIcons/*/*/*.png) $(wildcard $(srcdir)/ThemeIcons/scalable/*/*.svg)
598
604
@ENABLE_APPLEDEVICE_TRUE@THEME_ICONS_SOURCE = $(wildcard $(srcdir)/ThemeIcons/*/*/*.png) $(wildcard $(srcdir)/ThemeIcons/scalable/*/*.svg)
 
605
@ENABLE_APPLEDEVICE_FALSE@THEME_ICONS_RELATIVE = $(subst $(srcdir)/ThemeIcons/, , $(THEME_ICONS_SOURCE))
599
606
@ENABLE_APPLEDEVICE_TRUE@THEME_ICONS_RELATIVE = $(subst $(srcdir)/ThemeIcons/, , $(THEME_ICONS_SOURCE))
 
607
@ENABLE_APPLEDEVICE_FALSE@ASSEMBLY_EXTENSION = $(strip $(patsubst library, dll, $(TARGET)))
600
608
@ENABLE_APPLEDEVICE_TRUE@ASSEMBLY_EXTENSION = $(strip $(patsubst library, dll, $(TARGET)))
 
609
@ENABLE_APPLEDEVICE_FALSE@ASSEMBLY_FILE = $(top_builddir)/bin/$(ASSEMBLY).$(ASSEMBLY_EXTENSION)
601
610
@ENABLE_APPLEDEVICE_TRUE@ASSEMBLY_FILE = $(top_builddir)/bin/$(ASSEMBLY).$(ASSEMBLY_EXTENSION)
602
 
@ENABLE_APPLEDEVICE_TRUE@INSTALL_DIR_RESOLVED = $(firstword $(subst , $(DEFAULT_INSTALL_DIR), $(INSTALL_DIR)))
603
 
@ENABLE_APPLEDEVICE_TRUE@@ENABLE_TESTS_TRUE@ENABLE_TESTS_FLAG = "-define:ENABLE_TESTS"
604
 
@ENABLE_APPLEDEVICE_TRUE@FILTERED_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE))
605
 
@ENABLE_APPLEDEVICE_TRUE@DEP_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE) | sed s,-r:,,g | grep '$(top_builddir)/bin/')
 
611
@ENABLE_APPLEDEVICE_FALSE@OUTPUT_FILES = \
 
612
@ENABLE_APPLEDEVICE_FALSE@      $(ASSEMBLY_FILE) \
 
613
@ENABLE_APPLEDEVICE_FALSE@      $(ASSEMBLY_FILE).mdb
 
614
 
606
615
@ENABLE_APPLEDEVICE_TRUE@OUTPUT_FILES = \
607
616
@ENABLE_APPLEDEVICE_TRUE@       $(ASSEMBLY_FILE) \
608
617
@ENABLE_APPLEDEVICE_TRUE@       $(ASSEMBLY_FILE).mdb
609
618
 
610
 
@ENABLE_APPLEDEVICE_TRUE@moduledir = $(INSTALL_DIR_RESOLVED)
611
 
@ENABLE_APPLEDEVICE_TRUE@module_SCRIPTS = $(OUTPUT_FILES)
612
 
@ENABLE_APPLEDEVICE_FALSE@EXTRA_DIST = $(SOURCES) $(RESOURCES)
 
619
@ENABLE_APPLEDEVICE_FALSE@EXTRA_DIST = $(SOURCES_BUILD) $(RESOURCES_EXPANDED) $(THEME_ICONS_SOURCE)
613
620
@ENABLE_APPLEDEVICE_TRUE@EXTRA_DIST = $(SOURCES_BUILD) $(RESOURCES_EXPANDED) $(THEME_ICONS_SOURCE)
 
621
@ENABLE_APPLEDEVICE_FALSE@CLEANFILES = $(OUTPUT_FILES)
614
622
@ENABLE_APPLEDEVICE_TRUE@CLEANFILES = $(OUTPUT_FILES)
 
623
@ENABLE_APPLEDEVICE_FALSE@DISTCLEANFILES = *.pidb
615
624
@ENABLE_APPLEDEVICE_TRUE@DISTCLEANFILES = *.pidb
 
625
@ENABLE_APPLEDEVICE_FALSE@MAINTAINERCLEANFILES = Makefile.in
616
626
@ENABLE_APPLEDEVICE_TRUE@MAINTAINERCLEANFILES = Makefile.in
 
627
@ENABLE_APPLEDEVICE_TRUE@UNIQUE_FILTER_PIPE = tr [:space:] \\n | sort | uniq
 
628
@ENABLE_APPLEDEVICE_TRUE@BUILD_DATA_DIR = $(top_builddir)/bin/share/$(PACKAGE)
 
629
@ENABLE_APPLEDEVICE_TRUE@INSTALL_ICONS = $(top_srcdir)/build/private-icon-theme-installer "$(mkinstalldirs)" "$(INSTALL_DATA)"
 
630
@ENABLE_APPLEDEVICE_TRUE@INSTALL_DIR_RESOLVED = $(firstword $(subst , $(DEFAULT_INSTALL_DIR), $(INSTALL_DIR)))
 
631
@ENABLE_APPLEDEVICE_TRUE@@ENABLE_TESTS_TRUE@ENABLE_TESTS_FLAG = "-define:ENABLE_TESTS"
 
632
@ENABLE_APPLEDEVICE_TRUE@FILTERED_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE))
 
633
@ENABLE_APPLEDEVICE_TRUE@DEP_LINK = $(shell echo "$(LINK)" | $(UNIQUE_FILTER_PIPE) | sed s,-r:,,g | grep '$(top_builddir)/bin/')
 
634
@ENABLE_APPLEDEVICE_TRUE@moduledir = $(INSTALL_DIR_RESOLVED)
 
635
@ENABLE_APPLEDEVICE_TRUE@module_SCRIPTS = $(OUTPUT_FILES)
617
636
all: all-am
618
637
 
619
638
.SUFFIXES:
620
 
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/build/build.mk $(top_srcdir)/build/build.environment.mk $(top_srcdir)/build/build.rules.mk $(am__configure_deps)
 
639
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/build/build.mk $(top_srcdir)/build/build.environment.mk $(top_srcdir)/build/build.rules.mk $(top_srcdir)/build/build.dist.mk $(top_srcdir)/build/build.dist.mk $(am__configure_deps)
621
640
        @for dep in $?; do \
622
641
          case '$(am__configure_deps)' in \
623
642
            *$$dep*) \
847
866
 
848
867
@ENABLE_APPLEDEVICE_TRUE@all: $(ASSEMBLY_FILE) theme-icons
849
868
 
850
 
@ENABLE_APPLEDEVICE_TRUE@run: 
 
869
@ENABLE_APPLEDEVICE_TRUE@run:
851
870
@ENABLE_APPLEDEVICE_TRUE@       @pushd $(top_builddir); \
852
871
@ENABLE_APPLEDEVICE_TRUE@       make run; \
853
872
@ENABLE_APPLEDEVICE_TRUE@       popd;