freedreno/a3xx: add MRT support
[mesa.git] / src / gallium / drivers / freedreno / Makefile.am
1 AUTOMAKE_OPTIONS = subdir-objects
2
3 include Makefile.sources
4 include $(top_srcdir)/src/gallium/Automake.inc
5
6 AM_CFLAGS = \
7 -Wno-packed-bitfield-compat \
8 -I$(top_srcdir)/src/gallium/drivers/freedreno/ir3 \
9 $(GALLIUM_DRIVER_CFLAGS) \
10 $(FREEDRENO_CFLAGS)
11
12 noinst_LTLIBRARIES = libfreedreno.la
13
14 libfreedreno_la_SOURCES = \
15 $(C_SOURCES) \
16 $(a2xx_SOURCES) \
17 $(a3xx_SOURCES) \
18 $(a4xx_SOURCES) \
19 $(ir3_SOURCES)
20
21 noinst_PROGRAMS = ir3_compiler
22
23 ir3_compiler_SOURCES = \
24 ir3/ir3_cmdline.c
25
26 ir3_compiler_LDADD = \
27 libfreedreno.la \
28 ../../auxiliary/libgallium.la \
29 $(top_builddir)/src/util/libmesautil.la \
30 $(GALLIUM_COMMON_LIB_DEPS) \
31 $(FREEDRENO_LIBS)