blob: c63dce3fe4af8cf1f4b22e66eee67a8ca605f112 [file] [log] [blame]
AUTOMAKE_OPTIONS = subdir-objects
AM_CPPFLAGS = $(DEFINES) \
$(GALLIUM_PIPE_LOADER_DEFINES) \
-I$(top_srcdir)/include \
-I$(top_srcdir)/src/gallium/include \
-I$(top_srcdir)/src/gallium/auxiliary \
-I$(top_srcdir)/src/gallium/winsys
AM_CFLAGS = $(PIC_FLAGS)
noinst_LTLIBRARIES =
if HAVE_LOADER_GALLIUM
noinst_LTLIBRARIES += libpipe_loader.la
libpipe_loader_la_SOURCES = \
pipe_loader.h \
pipe_loader_priv.h \
pipe_loader.c \
pipe_loader_sw.c
if HAVE_DRM_LOADER_GALLIUM
libpipe_loader_la_SOURCES += pipe_loader_drm.c
AM_CFLAGS += $(LIBDRM_CFLAGS)
endif
# Provide compatibility with scripts for the old Mesa build system for
# a while by putting a link to the library in the current directory.
all-local: libpipe_loader.la
ln -f .libs/libpipe_loader.a .
clean-local:
rm -f libpipe_loader.a
endif
# FIXME: Remove when the rest of Gallium is converted to automake.
default: all