~kelemeng/banshee/bug743928

« back to all changes in this revision

Viewing changes to src/Backends/Banshee.Hal/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2011-05-14 22:25:36 UTC
  • mfrom: (6.3.15 experimental)
  • Revision ID: james.westby@ubuntu.com-20110514222536-u1x7ikxdqkmfvyuz
Tags: 2.1.0-1ubuntu1
* [2396c18] Merge from Debian Unstable, remaining changes:
  + Enable SoundMenu and Disable NotificationArea by default
  + Disable boo and karma extensions
  + Enable and recommnd u1ms and soundmenu extensions
  + Move desktop file for Meego UI to /usr/share/une/applications
  + Change the url for the Amazon store redirector
  + Create the U1MS widget earlier and bump libu1 requirement
* [9d7c600] Drop upstreamed u1ms-initialize-earlier patch

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
ASSEMBLY = Banshee.Hal
2
 
TARGET = library
3
 
LINK = $(REF_BACKEND_HAL)
4
 
INSTALL_DIR = $(BACKENDS_INSTALL_DIR)
5
 
 
6
 
SOURCES =  \
7
 
        Banshee.HalBackend/BlockDevice.cs \
8
 
        Banshee.HalBackend/CdromDevice.cs \
9
 
        Banshee.HalBackend/Device.cs \
10
 
        Banshee.HalBackend/DeviceMediaCapabilities.cs \
11
 
        Banshee.HalBackend/DiscVolume.cs \
12
 
        Banshee.HalBackend/DiskDevice.cs \
13
 
        Banshee.HalBackend/DkDisk.cs \
14
 
        Banshee.HalBackend/HardwareManager.cs \
15
 
        Banshee.HalBackend/UsbDevice.cs \
16
 
        Banshee.HalBackend/Volume.cs \
17
 
        Hal/Device.cs \
18
 
        Hal/Manager.cs \
19
 
        Hal/Volume.cs
20
 
 
21
 
RESOURCES = Banshee.Hal.addin.xml
22
 
 
23
 
if ENABLE_HAL
24
 
include $(top_srcdir)/build/build.mk
25
 
else
26
 
EXTRA_DIST = $(SOURCES) $(RESOURCES)
27
 
endif
28
 
 
29