trace: Convert to automake
[mesa.git] / src / gallium / drivers / Makefile.am
index b6954e2d94a06e0d69ea4987e687987b46c035fd..dc808f47d9b7b0b4b8fef9847a3f9fcdf5adb4c3 100644 (file)
@@ -1,4 +1,71 @@
-SUBDIRS = $(GALLIUM_DRIVERS_DIRS)
+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)
+
+AM_CFLAGS = $(VISIBILITY_CFLAGS)
+
+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
+