Add Meson build files to the autotools dist

This way we can take a dist tarball created through autotools, and use
Meson to build it.

Once Meson gets support for disting, we'll do the same with the
autotools build files, and call the result a "Buildoboros".
macos/v1.5.9
Emmanuele Bassi 8 years ago
parent 8a5f52eaff
commit 0ab213bf88
  1. 24
      Makefile.am

@ -27,15 +27,31 @@ SUBDIRS += test
pkgconfigdir = $(libdir)/pkgconfig pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = epoxy.pc pkgconfig_DATA = epoxy.pc
registry_files = \
registry/egl.xml \
registry/gl.xml \
registry/glx.xml \
registry/wgl.xml \
$()
meson_build_files = \
meson_options.txt \
meson.build \
include/epoxy/meson.build \
src/meson.build \
test/meson.build \
doc/meson.build \
doc/Doxyfile.in \
cross/fedora-mingw64.txt \
$()
EXTRA_DIST = \ EXTRA_DIST = \
.dir-locals.el \ .dir-locals.el \
README.md \ README.md \
autogen.sh \ autogen.sh \
epoxy.pc.in \ epoxy.pc.in \
registry/egl.xml \ $(registry_files) \
registry/gl.xml \ $(meson_build_files) \
registry/glx.xml \
registry/wgl.xml \
$() $()
dist-hook: dist-hook:

Loading…
Cancel
Save