blob: 984ad3d978c682784ce7d7ae846472d184e1bcfb (
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
|
libexec_PROGRAMS = indicator-datetime-service
indicator_datetime_service_SOURCES = \
datetime-service.c \
dbus-shared.h
indicator_datetime_service_CFLAGS = \
-Wall \
-Werror \
$(INDICATOR_CFLAGS) \
-DTIMEZONE_FILE="\"/etc/timezone\""
indicator_datetime_service_LDADD = \
$(INDICATOR_LIBS)
datetimelibdir = $(INDICATORDIR)
datetimelib_LTLIBRARIES = libdatetime.la
libdatetime_la_SOURCES = \
dbus-shared.h \
indicator-datetime.c
libdatetime_la_CFLAGS = \
$(INDICATOR_CFLAGS) \
-Wall -Werror
libdatetime_la_LIBADD = \
$(INDICATOR_LIBS)
libdatetime_la_LDFLAGS = \
-module \
-avoid-version
EXTRA_DIST = $(libdatetime_la_SOURCES)
|