diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2011-01-09 13:21:10 +0100 |
---|---|---|
committer | Marc-André Lureau <marcandre.lureau@redhat.com> | 2011-01-09 13:39:40 +0100 |
commit | 13b811b6a887c7fb483cad8395c43ec00a362785 (patch) | |
tree | ed9924e34a5599837f24dff6a2b794eab12ef925 | |
parent | 2f965e05b25ec0df637a90540f777d194a6c5311 (diff) |
build: get rid of _DEPENDENCIES and -lspice-client*
Suggested by Jürg Billeter.
-rw-r--r-- | gtk/Makefile.am | 18 |
1 files changed, 5 insertions, 13 deletions
diff --git a/gtk/Makefile.am b/gtk/Makefile.am index b4b5e46..f0aec21 100644 --- a/gtk/Makefile.am +++ b/gtk/Makefile.am @@ -236,13 +236,9 @@ spicy_SOURCES = \ spice-cmdline.c \ $(NULL) -spicy_DEPENDENCIES = \ - $(lib_LTLIBRARIES) \ - $(NULL) - -spicy_LDFLAGS = \ - -lspice-client-gtk \ - -lspice-client-glib \ +spicy_LDADD = \ + libspice-client-gtk.la \ + libspice-client-glib.la \ $(NULL) @@ -252,12 +248,8 @@ snappy_SOURCES = \ spice-cmdline.c \ $(NULL) -snappy_DEPENDENCIES = \ - $(lib_LTLIBRARIES) \ - $(NULL) - -snappy_LDFLAGS = \ - -lspice-client-glib \ +snappy_LDADD = \ + libspice-client-glib.la \ $(NULL) |