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 /libindicator/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 'libindicator/Makefile.am')
-rw-r--r-- | libindicator/Makefile.am | 27 |
1 files changed, 22 insertions, 5 deletions
diff --git a/libindicator/Makefile.am b/libindicator/Makefile.am index f942f0d..39cb2b7 100644 --- a/libindicator/Makefile.am +++ b/libindicator/Makefile.am @@ -1,12 +1,21 @@ +if USE_GTK3 +VER=3 +lib_LTLIBRARIES = libindicator3.la +else +VER= +lib_LTLIBRARIES = libindicator.la +endif + BUILT_SOURCES = indicator-object-enum-types.h indicator-object-enum-types.c CLEANFILES = DISTCLEANFILES = EXTRA_DIST = \ + indicator3.pc.in \ indicator.pc.in include $(top_srcdir)/Makefile.am.marshal -libindicatorincludedir=$(includedir)/libindicator-0.3/libindicator +libindicatorincludedir=$(includedir)/libindicator$(VER)-0.3/libindicator indicator_headers = \ indicator.h \ @@ -19,9 +28,6 @@ indicator_headers = \ libindicatorinclude_HEADERS = \ $(indicator_headers) -lib_LTLIBRARIES = \ - libindicator.la - libindicator_la_SOURCES = \ $(indicator_headers) \ dbus-shared.h \ @@ -47,7 +53,18 @@ libindicator_la_LDFLAGS = \ -no-undefined \ -export-symbols-regex "^[^_].*" -pkgconfig_DATA = indicator.pc +# We duplicate these here because Automake won't let us use $(VER) on the left hand side. +# Since we carefully use $(VER) in the right hand side above, we can assign the same values. +# Only one version of the library is every compiled at the same time, so it is safe to reuse +# the right hand sides like this. +libindicator3includedir = $(libindicatorincludedir) +libindicator3include_HEADERS = $(indicator_headers) +libindicator3_la_SOURCES = $(libindicator_la_SOURCES) +libindicator3_la_CFLAGS = $(libindicator_la_CFLAGS) +libindicator3_la_LIBADD = $(libindicator_la_LIBADD) +libindicator3_la_LDFLAGS = $(libindicator_la_LDFLAGS) + +pkgconfig_DATA = indicator$(VER).pc pkgconfigdir = $(libdir)/pkgconfig glib_marshal_list = indicator-object-marshal.list |