aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.am
blob: c92cecea42220f143497a754596c3ced181993c9 (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

libexec_PROGRAMS = indicator-example-service

indicator_example_service_SOURCES = \
	example-service.c \
	dbus-shared.h \
	settings-shared.h
indicator_example_service_CFLAGS = \
	-Wall \
	$(SERVICE_CFLAGS) \
	-DG_LOG_DOMAIN=\"Indicator-Example\"
indicator_example_service_LDADD = \
	$(SERVICE_LIBS)

examplelibdir = $(INDICATORDIR)
examplelib_LTLIBRARIES = libexample.la
libexample_la_SOURCES = \
	dbus-shared.h \
	settings-shared.h \
	indicator-example.c
libexample_la_CFLAGS = \
	$(INDICATOR_CFLAGS) \
	-Wall \
	-DG_LOG_DOMAIN=\"Indicator-Example\"
libexample_la_LIBADD = \
	$(INDICATOR_LIBS)
libexample_la_LDFLAGS = \
	-module \
	-avoid-version