diff options
author | Ted Gould <ted@gould.cx> | 2010-11-11 14:40:03 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2010-11-11 14:40:03 -0600 |
commit | df21e797234f5bb4bd7e2a014296efe20ac6d2f3 (patch) | |
tree | 9b46318f3c6ff12e79b3a3da65523b5a1818bc3e /tools/Makefile.am | |
parent | b91aaa92453fbab73397019070d86c0a9b6fa7ce (diff) | |
parent | 7d8375c7694f91fb05f72cf175a0a0219ba19bb1 (diff) | |
download | libayatana-indicator-df21e797234f5bb4bd7e2a014296efe20ac6d2f3.tar.gz libayatana-indicator-df21e797234f5bb4bd7e2a014296efe20ac6d2f3.tar.bz2 libayatana-indicator-df21e797234f5bb4bd7e2a014296efe20ac6d2f3.zip |
Import upstream version 0.3.15
Diffstat (limited to 'tools/Makefile.am')
-rw-r--r-- | tools/Makefile.am | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am index 5e5ef8d..6c67491 100644 --- a/tools/Makefile.am +++ b/tools/Makefile.am @@ -1,3 +1,8 @@ +if USE_GTK3 +INDICATOR_LIB = -lindicator3 +else +INDICATOR_LIB = -lindicator +endif libexec_PROGRAMS = \ indicator-loader @@ -17,5 +22,10 @@ indicator_loader_CFLAGS = \ indicator_loader_LDADD = \ $(LIBINDICATOR_LIBS) \ -L$(top_builddir)/libindicator/.libs \ - -lindicator + $(INDICATOR_LIB) +xsessiondir = $(sysconfdir)/X11/Xsession.d + +xsession_DATA = 80indicator-debugging + +EXTRA_DIST = $(xsession_DATA) |