diff options
author | Marc-André Lureau <marcandre.lureau@redhat.com> | 2019-01-17 16:01:59 +0400 |
---|---|---|
committer | Frediano Ziglio <fziglio@redhat.com> | 2019-07-09 11:05:29 +0100 |
commit | 9837f974cc32185f3bdb1d4102fd5b65607c3e02 (patch) | |
tree | 21a3d5fc9c158930b49d3c1a213d83eb46e07400 /tools | |
parent | 0c761fe14f08dfeb78036e6b7a5ca3537f03f84f (diff) |
Drop autotools
Maintaining 1 build system is hard. Maintaining 2 is even harder.
It seems the meson build system is now in good shape to replace
autotools. Like many desktop projects, let's move entirely to meson
and drop autotools support.
Known changes:
- generating changelog files in the dist tarball. This is not strictly
required, and can be added back later.
- generated files are not included in the dist tarball. In some ways,
this can be considered a good thing.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Acked-by: Victor Toso <victortoso@redhat.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/Makefile.am | 77 |
1 files changed, 0 insertions, 77 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am deleted file mode 100644 index 18786ae..0000000 --- a/tools/Makefile.am +++ /dev/null @@ -1,77 +0,0 @@ -bin_PROGRAMS = spicy-stats spicy-screenshot - -EXTRA_DIST = meson.build - -TOOLS_CPPFLAGS = \ - -DSPICE_COMPILATION \ - -I$(top_builddir)/src \ - -I$(top_srcdir) \ - -I$(top_srcdir)/src \ - $(COMMON_CFLAGS) \ - $(GLIB2_CFLAGS) \ - $(GIO_CFLAGS) \ - $(SMARTCARD_CFLAGS) \ - $(SPICE_CFLAGS) \ - $(NULL) - -if WITH_GTK -bin_PROGRAMS += spicy -TOOLS_CPPFLAGS += $(GTK_CFLAGS) -endif - -spicy_SOURCES = \ - spicy.c \ - spicy-connect.h \ - spicy-connect.c \ - spice-cmdline.h \ - spice-cmdline.c \ - $(NULL) - -spicy_LDADD = \ - $(top_builddir)/src/libspice-client-gtk-3.0.la \ - $(top_builddir)/src/libspice-client-glib-2.0.la \ - $(GTK_LIBS) \ - $(GSTAUDIO_LIBS) \ - $(GSTVIDEO_LIBS) \ - $(NULL) - -# FIXME: GtkAction and lots of GtkUIManager APIs are deprecated -spicy_CPPFLAGS = \ - $(TOOLS_CPPFLAGS) \ - $(GSTAUDIO_CFLAGS) \ - $(GSTVIDEO_CFLAGS) \ - -DSPICE_DISABLE_DEPRECATED \ - -Wno-deprecated-declarations \ - $(NULL) - -spicy_screenshot_SOURCES = \ - spicy-screenshot.c \ - spice-cmdline.h \ - spice-cmdline.c \ - $(NULL) - -spicy_screenshot_LDADD = \ - $(top_builddir)/src/libspice-client-glib-2.0.la \ - $(GOBJECT2_LIBS) \ - $(NULL) - -spicy_screenshot_CPPFLAGS = \ - $(TOOLS_CPPFLAGS) \ - $(NULL) - -spicy_stats_SOURCES = \ - spicy-stats.c \ - spice-cmdline.h \ - spice-cmdline.c \ - $(NULL) - -spicy_stats_LDADD = \ - $(top_builddir)/src/libspice-client-glib-2.0.la \ - $(GOBJECT2_LIBS) \ - $(NULL) - -spicy_stats_CPPFLAGS = \ - $(TOOLS_CPPFLAGS) \ - $(NULL) - --include $(top_srcdir)/git.mk |