diff options
author | Ted Gould <ted@gould.cx> | 2011-01-25 14:54:14 -0600 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-01-25 14:54:14 -0600 |
commit | 30d75caf3805223cdfa609f2e4e14e75477c8df5 (patch) | |
tree | 242c1d64aa4db5c9471b7ed120d79ca2eb36ba67 /example/Makefile.am | |
parent | 8cf0c2e5d59a905f6137a00610b298615b871573 (diff) | |
parent | c5195ae53f4956c40b65516bcc4810aa94f985a7 (diff) | |
download | libayatana-appindicator-30d75caf3805223cdfa609f2e4e14e75477c8df5.tar.gz libayatana-appindicator-30d75caf3805223cdfa609f2e4e14e75477c8df5.tar.bz2 libayatana-appindicator-30d75caf3805223cdfa609f2e4e14e75477c8df5.zip |
Fixups for GTK3 Build
Diffstat (limited to 'example/Makefile.am')
-rw-r--r-- | example/Makefile.am | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/example/Makefile.am b/example/Makefile.am index e23e08d..0900baf 100644 --- a/example/Makefile.am +++ b/example/Makefile.am @@ -1,3 +1,9 @@ +if USE_GTK3 +VER=3 +else +VER= +endif + check_PROGRAMS = \ simple-client @@ -17,7 +23,7 @@ simple_client_CFLAGS = \ simple_client_LDADD = \ $(LIBRARY_LIBS) \ - $(top_builddir)/src/libappindicator.la + $(top_builddir)/src/libappindicator$(VER).la EXTRA_DIST = \ simple-client-test-icon.png |