blob: 5e5ef8d04e523c3e5502ad0c5eca7ce22413377c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
libexec_PROGRAMS = \
indicator-loader
#############################
# Indicator Loader
#############################
indicator_loader_SOURCES = \
indicator-loader.c
indicator_loader_CFLAGS = \
-Wall -Werror \
$(LIBINDICATOR_CFLAGS) -I$(top_srcdir) \
-DBUILD_DIR="\"$(builddir)\""
indicator_loader_LDADD = \
$(LIBINDICATOR_LIBS) \
-L$(top_builddir)/libindicator/.libs \
-lindicator
|