r600g: Fix segfault in r600_compute_global_transfer_map()
[mesa.git] / src / gallium / drivers / Makefile.am
1 AUTOMAKE_OPTIONS = subdir-objects
2
3 AM_CPPFLAGS = \
4 -I$(top_srcdir)/src/gallium/include \
5 -I$(top_srcdir)/src/gallium/auxiliary \
6 -I$(top_srcdir)/src/gallium/drivers \
7 $(DEFINES) \
8 $(PIC_FLAGS)
9
10 noinst_LIBRARIES =
11
12 SUBDIRS =
13
14 ################################################################################
15
16 if HAVE_GALAHAD_GALLIUM
17
18 noinst_LIBRARIES+= galahad/libgalahad.a
19
20 galahad_libgalahad_a_SOURCES = \
21 galahad/glhd_objects.c \
22 galahad/glhd_context.c \
23 galahad/glhd_screen.c
24
25 endif
26
27 ################################################################################
28
29 if HAVE_IDENTITY_GALLIUM
30
31 noinst_LIBRARIES+= identity/libidentity.a
32
33 identity_libidentity_a_SOURCES = \
34 identity/id_objects.c \
35 identity/id_context.c \
36 identity/id_screen.c
37
38 endif
39
40 ################################################################################
41
42 if HAVE_NOOP_GALLIUM
43
44 # Meta-driver which combines whichever software rasterizers have been
45 # built into a single convenience library.
46
47 noinst_LIBRARIES+= noop/libnoop.a
48
49 noop_libnoop_a_SOURCES = \
50 noop/noop_pipe.c \
51 noop/noop_state.c
52
53 endif
54
55 ################################################################################
56
57 if NEED_RADEON_GALLIUM
58
59 SUBDIRS+= radeon
60
61 endif
62
63 ################################################################################
64
65 SUBDIRS+= $(GALLIUM_MAKE_DIRS)
66
67 # FIXME: Remove when the rest of Gallium is converted to automake.
68 default: all
69