mirror of
https://gitlab.freedesktop.org/mesa/mesa.git
synced 2026-05-24 23:38:10 +02:00
Every place that uses ASM_FLAGS already uses DEFINES. Not including it in DEFINES is just a way to screw up potential users, as I've done several times while working on the build system.
69 lines
1.4 KiB
Makefile
69 lines
1.4 KiB
Makefile
AUTOMAKE_OPTIONS = subdir-objects
|
|
|
|
AM_CPPFLAGS = \
|
|
-I$(top_srcdir)/src/gallium/include \
|
|
-I$(top_srcdir)/src/gallium/auxiliary \
|
|
-I$(top_srcdir)/src/gallium/drivers \
|
|
$(DEFINES) \
|
|
$(PIC_FLAGS)
|
|
|
|
noinst_LIBRARIES =
|
|
|
|
SUBDIRS =
|
|
|
|
################################################################################
|
|
|
|
if HAVE_GALAHAD_GALLIUM
|
|
|
|
noinst_LIBRARIES+= galahad/libgalahad.a
|
|
|
|
galahad_libgalahad_a_SOURCES = \
|
|
galahad/glhd_objects.c \
|
|
galahad/glhd_context.c \
|
|
galahad/glhd_screen.c
|
|
|
|
endif
|
|
|
|
################################################################################
|
|
|
|
if HAVE_IDENTITY_GALLIUM
|
|
|
|
noinst_LIBRARIES+= identity/libidentity.a
|
|
|
|
identity_libidentity_a_SOURCES = \
|
|
identity/id_objects.c \
|
|
identity/id_context.c \
|
|
identity/id_screen.c
|
|
|
|
endif
|
|
|
|
################################################################################
|
|
|
|
if HAVE_NOOP_GALLIUM
|
|
|
|
# Meta-driver which combines whichever software rasterizers have been
|
|
# built into a single convenience library.
|
|
|
|
noinst_LIBRARIES+= noop/libnoop.a
|
|
|
|
noop_libnoop_a_SOURCES = \
|
|
noop/noop_pipe.c \
|
|
noop/noop_state.c
|
|
|
|
endif
|
|
|
|
################################################################################
|
|
|
|
if NEED_RADEON_GALLIUM
|
|
|
|
SUBDIRS+= radeon
|
|
|
|
endif
|
|
|
|
################################################################################
|
|
|
|
SUBDIRS+= $(GALLIUM_MAKE_DIRS)
|
|
|
|
# FIXME: Remove when the rest of Gallium is converted to automake.
|
|
default: all
|
|
|