blob: bf9093d7da3d812fbe5009548439c3437ba9b502 (
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
|
libexec_PROGRAMS = indicator-datetime-service
indicator_datetime_service_SOURCES = \
datetime-service.c
indicator_datetime_service_CFLAGS = \
-Wall \
-Werror \
$(INDICATOR_CFLAGS)
indicator_datetime_service_LDADD = \
$(INDICATOR_LIBS)
datetimelibdir = $(INDICATORDIR)
datetimelib_LTLIBRARIES = libdatetime.la
libdatetime_la_SOURCES = \
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)
|