diff options
| author | Charles Kerr <charles.kerr@canonical.com> | 2013-08-10 04:26:27 +0000 |
|---|---|---|
| committer | Tarmac <> | 2013-08-10 04:26:27 +0000 |
| commit | f28653eb1a4a310987fffc44334b93da3f547d41 (patch) | |
| tree | 82a72bfbb7eeca76766d73ae20f1152c5b8392c3 /src/Makefile.am | |
| parent | 0391025f72e9e5fed972b40e63087635d50c9234 (diff) | |
| parent | a0616908a817d6fad47c29ae703fc8a2ea379af6 (diff) | |
| download | ayatana-indicator-bluetooth-f28653eb1a4a310987fffc44334b93da3f547d41.tar.gz ayatana-indicator-bluetooth-f28653eb1a4a310987fffc44334b93da3f547d41.tar.bz2 ayatana-indicator-bluetooth-f28653eb1a4a310987fffc44334b93da3f547d41.zip | |
Add phone profile. Export menus & actions using gio. Drops the gtk, dbusmenu, and libindicator build dependencies. Drops runtime dependency on gnome-blueooth in the phone profile.
Approved by Ted Gould, PS Jenkins bot, Mathieu Trudel-Lapierre.
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 55 |
1 files changed, 21 insertions, 34 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 6bbb623..2fc41bb 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,49 +1,36 @@ pkglibexec_PROGRAMS = indicator-bluetooth-service -indicatordir = $(INDICATORDIR) -indicator_LTLIBRARIES = libbluetooth.la -indicator_bluetooth_service_SOURCES = \ - config.vapi \ - indicator3-0.4.vapi \ - gnome-bluetooth-1.0.vapi \ - indicator-bluetooth-service.vala +indicator_bluetooth_service_SOURCES = \ + org-bluez.vala \ + bluetooth.vala \ + bluez.vala \ + desktop.vala \ + device.vala \ + main.vala \ + phone.vala \ + profile.vala \ + killswitch.vala \ + service.vala indicator_bluetooth_service_VALAFLAGS = \ + --ccode \ + --vapidir=$(top_srcdir)/vapi/ \ + --vapidir=./ \ + --pkg config \ + --pkg rfkill \ --pkg posix \ --pkg glib-2.0 \ - --pkg gtk+-3.0 \ - --pkg Dbusmenu-0.4 + --pkg gio-2.0 +# -w to disable warnings for vala-generated code indicator_bluetooth_service_CFLAGS = \ -DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \ -DLOCALE_DIR=\"$(datadir)/locale\" \ - $(INDICATOR_BLUETOOTH_SERVICE_CFLAGS) + -w \ + $(SERVICE_DEPS_CFLAGS) indicator_bluetooth_service_LDADD = \ - $(INDICATOR_BLUETOOTH_SERVICE_LIBS) - -libbluetooth_la_SOURCES = \ - config.vapi \ - indicator3-0.4.vapi \ - indicator-bluetooth.vala \ - libido3-0.1.vapi - -libbluetooth_la_VALAFLAGS = \ - --pkg posix \ - --pkg glib-2.0 \ - --pkg gtk+-3.0 \ - --pkg Dbusmenu-0.4 \ - --pkg DbusmenuGtk3-0.4 - -libbluetooth_la_CFLAGS = \ - -DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \ - $(INDICATOR_BLUETOOTH_CFLAGS) - -libbluetooth_la_LIBADD = \ - $(INDICATOR_BLUETOOTH_LIBS) - -libbluetooth_la_LDFLAGS = \ - -module -avoid-version + $(SERVICE_DEPS_LIBS) CLEANFILES = \ $(patsubst %.vala,%.c,$(filter %.vala, $(SOURCES))) \ |
