src/gallium/drivers/freedreno/a2xx/Makefile
src/gallium/drivers/freedreno/a3xx/Makefile
src/gallium/drivers/i915/Makefile
+ src/gallium/drivers/identity/Makefile
src/gallium/drivers/ilo/Makefile
src/gallium/drivers/llvmpipe/Makefile
src/gallium/drivers/nouveau/Makefile
noinst_LTLIBRARIES =
-SUBDIRS = . trace rbug
+SUBDIRS = . identity trace rbug
################################################################################
################################################################################
-noinst_LTLIBRARIES += identity/libidentity.la
-
-identity_libidentity_la_SOURCES = \
- identity/id_objects.c \
- identity/id_context.c \
- identity/id_screen.c
-
-################################################################################
-
# Meta-driver which combines whichever software rasterizers have been
# built into a single convenience library.
--- /dev/null
+include Makefile.sources
+include $(top_srcdir)/src/gallium/Automake.inc
+
+AM_CFLAGS = \
+ -I$(top_srcdir)/src/gallium/drivers \
+ $(GALLIUM_CFLAGS) \
+ $(VISIBILITY_CFLAGS)
+
+noinst_LTLIBRARIES = libidentity.la
+
+libidentity_la_SOURCES = $(C_SOURCES)
--- /dev/null
+C_SOURCES := \
+ id_objects.c \
+ id_context.c \
+ id_screen.c
identity = env.ConvenienceLibrary(
target = 'identity',
- source = [
- 'id_context.c',
- 'id_objects.c',
- 'id_screen.c',
- ])
+ source = env.ParseSourceList('Makefile.sources', 'C_SOURCES')
+ )
env.Alias('identity', identity)