libglvnd/tests/GLX_dummy/Makefile.am
Brian Nguyen b3f7cbc3e0 [tests] Add a GLX_dummy dummy vendor library
This vendor library will be loaded by the API library in various
subtests in the test suite, and will implement the bare minimum
needed to verify features and code paths in the API library. This
includes creating a fake GL "context", making current to the
"context", and calling some GL functions.
2013-08-26 11:03:43 -07:00

20 lines
563 B
Makefile

lib_LTLIBRARIES = libGLX_dummy.la
check-local: libGLX_dummy_copy
.PHONY : libGLX_dummy_copy
# HACK to get multiple copies of the dummy library for testing
libGLX_dummy_copy : libGLX_dummy.la
cp .libs/libGLX_dummy.so.0.0.0 .libs/libGLX_dummy_0.so.0
cp .libs/libGLX_dummy.so.0.0.0 .libs/libGLX_dummy_1.so.0
GLX_ABI_DIR = $(top_builddir)/src/GLX
libGLX_dummy_la_CFLAGS = \
-I$(GLX_ABI_DIR) \
-I$(top_builddir)/src/util \
-I$(top_builddir)/include \
-Wno-error=unused-function
libGLX_dummy_la_SOURCES = GLX_dummy.c