blob: 5f64b93ceaf72d3aaf22d0e9eefb1401a07e66eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
################################################################################
# Meta-driver which combines whichever software rasterizers have been
# built into a single convenience library.
include Makefile.sources
include $(top_srcdir)/src/gallium/Automake.inc
AM_CFLAGS = \
-I$(top_srcdir)/src/gallium/drivers \
$(GALLIUM_CFLAGS) \
$(VISIBILITY_CFLAGS)
noinst_LTLIBRARIES = libgalahad.la
libgalahad_la_SOURCES = $(C_SOURCES)
|