mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-19 11:28:15 +02:00
This adds the meson.build, meson_options.txt, and a few scripts that are
used exclusively by the meson build.
v2: - Remove accidentally included changes needed to test make dist with
LLVM > 3.9
Signed-off-by: Dylan Baker <dylan.c.baker@intel.com>
Acked-by: Eric Engestrom <eric@engestrom.ch>
Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
57 lines
1.1 KiB
Makefile
57 lines
1.1 KiB
Makefile
include Makefile.sources
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
pkgconfig_DATA = main/gbm.pc
|
|
|
|
AM_CFLAGS = \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src \
|
|
-I$(top_srcdir)/src/loader \
|
|
-I$(top_srcdir)/src/gbm/main \
|
|
$(DLOPEN_CFLAGS) \
|
|
$(DEFINES) \
|
|
$(VISIBILITY_CFLAGS)
|
|
|
|
lib_LTLIBRARIES = libgbm.la
|
|
include_HEADERS = main/gbm.h
|
|
|
|
libgbm_la_SOURCES = \
|
|
$(gbm_core_FILES)
|
|
|
|
libgbm_la_LDFLAGS = \
|
|
-no-undefined \
|
|
-version-info 1:0 \
|
|
$(GC_SECTIONS) \
|
|
$(LD_NO_UNDEFINED)
|
|
|
|
libgbm_la_LIBADD = \
|
|
$(top_builddir)/src/loader/libloader.la \
|
|
$(top_builddir)/src/util/libmesautil.la \
|
|
$(top_builddir)/src/util/libxmlconfig.la \
|
|
$(DLOPEN_LIBS)
|
|
|
|
if HAVE_PLATFORM_WAYLAND
|
|
AM_CFLAGS += \
|
|
$(WAYLAND_SERVER_CFLAGS) \
|
|
-I$(top_srcdir)/src/egl/wayland/wayland-drm/
|
|
libgbm_la_LIBADD += $(WAYLAND_SERVER_LIBS)
|
|
endif
|
|
|
|
if HAVE_DRI2
|
|
libgbm_la_SOURCES += \
|
|
$(gbm_dri_FILES)
|
|
|
|
AM_CFLAGS += \
|
|
-DDEFAULT_DRIVER_DIR='"$(DRI_DRIVER_SEARCH_DIR)"' \
|
|
$(LIBDRM_CFLAGS) \
|
|
$(PTHREADSTUBS_CFLAGS)
|
|
|
|
libgbm_la_LIBADD += \
|
|
$(LIBDRM_LIBS) \
|
|
$(PTHREADSTUBS_LIBS)
|
|
endif
|
|
|
|
TESTS = gbm-symbols-check
|
|
EXTRA_DIST = gbm-symbols-check meson.build
|
|
|
|
include $(top_srcdir)/install-lib-links.mk
|