blob: 64cb42d861d1252d16b43cf081fbc86a80825ba5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
bin_PROGRAMS = indicator-bluetooth
indicator_bluetooth_SOURCES = \
config.vapi \
bluez.vala \
indicator-bluetooth.vala \
rfkill.vala
indicator_bluetooth_VALAFLAGS = \
--pkg posix \
--pkg glib-2.0 \
--pkg gtk+-3.0 \
--pkg appindicator3-0.1
indicator_bluetooth_CFLAGS = \
-DVERSION=\"$(VERSION)\" \
-DGETTEXT_PACKAGE=\"$(GETTEXT_PACKAGE)\" \
-DLOCALE_DIR=\"$(datadir)/locale\" \
$(INDICATOR_BLUETOOTH_CFLAGS)
indicator_bluetooth_LDADD = \
$(INDICATOR_BLUETOOTH_LIBS)
CLEANFILES = \
$(patsubst %.vala,%.c,$(filter %.vala, $(SOURCES))) \
*_vala.stamp
|