blob: d14c270886829c9850f52a875485e959c8d6f6fd (
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
27
28
29
30
31
32
|
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
###################
# Indicator Stuff
###################
powerlibdir = $(INDICATORDIR)
powerlib_LTLIBRARIES = libpower.la
libpower_la_SOURCES = \
device.c \
indicator-power.c
noinst_HEADERS = \
device.h
libpower_la_CFLAGS = \
$(UPOWER_CFLAGS) \
$(INDICATOR_CFLAGS) \
$(COVERAGE_CFLAGS) \
-Wall -Werror \
-DG_LOG_DOMAIN=\"Indicator-Power\"
libpower_la_LIBADD = \
$(UPOWER_LIBS) \
$(INDICATOR_LIBS)
libpower_la_LDFLAGS = \
$(COVERAGE_LDFLAGS) \
-module \
-avoid-version
|