From 9ea050b1312e2d2a35f1993d0d803752ffe08b64 Mon Sep 17 00:00:00 2001 From: Philip Withnall Date: Wed, 9 Jan 2019 11:15:00 +0000 Subject: [PATCH] glib: Port glib-mirroring-tab subdirectory to Meson MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We don’t actually build this; the Makefile was just there to allow ad-hoc regeneration of the glib-mirroring-tab output files. Port it to Meson just so there are no remnants of GNU make left in GLib. Don’t hook it up to the rest of the build. Signed-off-by: Philip Withnall --- glib/glib-mirroring-tab/Makefile | 11 ----------- glib/glib-mirroring-tab/meson.build | 5 +++++ 2 files changed, 5 insertions(+), 11 deletions(-) delete mode 100644 glib/glib-mirroring-tab/Makefile create mode 100644 glib/glib-mirroring-tab/meson.build diff --git a/glib/glib-mirroring-tab/Makefile b/glib/glib-mirroring-tab/Makefile deleted file mode 100644 index 8ab193c17..000000000 --- a/glib/glib-mirroring-tab/Makefile +++ /dev/null @@ -1,11 +0,0 @@ - -CFLAGS = `pkg-config --cflags glib-2.0` -LIBS = `pkg-config --libs glib-2.0` - - -all: gen-mirroring-tab - -gen-mirroring-tab: gen-mirroring-tab.o packtab.o - -clean: - $(RM) gen-mirroring-tab *.o diff --git a/glib/glib-mirroring-tab/meson.build b/glib/glib-mirroring-tab/meson.build new file mode 100644 index 000000000..4b14ecf3b --- /dev/null +++ b/glib/glib-mirroring-tab/meson.build @@ -0,0 +1,5 @@ +gen_mirroring_tab = executable('gen-mirroring-tab', + ['gen-mirroring-tab.c', 'packtab.c'], + dependencies : [libglib_dep], + install: false, +) \ No newline at end of file