glib: Port glib-mirroring-tab subdirectory to Meson

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 <withnall@endlessm.com>
This commit is contained in:
Philip Withnall 2019-01-09 11:15:00 +00:00
parent 5751189fb8
commit 9ea050b131
2 changed files with 5 additions and 11 deletions

View File

@ -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

View File

@ -0,0 +1,5 @@
gen_mirroring_tab = executable('gen-mirroring-tab',
['gen-mirroring-tab.c', 'packtab.c'],
dependencies : [libglib_dep],
install: false,
)