vc4: Add support for 16-bit signed/unsigned norm/scaled vertex attrs.
[mesa.git] / src / gallium / drivers / freedreno / Makefile.am
index a7b307a021b5158a81ccd6839d3361d19947183b..aae2a2458edf73d0aa519f1c1057e82aeafed8bc 100644 (file)
@@ -3,18 +3,29 @@ AUTOMAKE_OPTIONS = subdir-objects
 include Makefile.sources
 include $(top_srcdir)/src/gallium/Automake.inc
 
-noinst_LTLIBRARIES = libfreedreno.la
-
 AM_CFLAGS = \
        -Wno-packed-bitfield-compat \
-       -I$(top_srcdir)/src/gallium/drivers \
-       -I$(top_srcdir)/src/gallium/drivers/freedreno/a3xx \
-       -I$(top_srcdir)/src/gallium/drivers/freedreno/a2xx \
-       $(GALLIUM_CFLAGS) \
-       $(FREEDRENO_CFLAGS) \
-       $(VISIBILITY_CFLAGS)
+       -I$(top_srcdir)/src/gallium/drivers/freedreno/ir3 \
+       $(GALLIUM_DRIVER_CFLAGS) \
+       $(FREEDRENO_CFLAGS)
+
+noinst_LTLIBRARIES = libfreedreno.la
 
 libfreedreno_la_SOURCES = \
        $(C_SOURCES) \
        $(a2xx_SOURCES) \
-       $(a3xx_SOURCES)
+       $(a3xx_SOURCES) \
+       $(a4xx_SOURCES) \
+       $(ir3_SOURCES)
+
+noinst_PROGRAMS = ir3_compiler
+
+ir3_compiler_SOURCES = \
+       ir3/ir3_cmdline.c
+
+ir3_compiler_LDADD = \
+       libfreedreno.la \
+       ../../auxiliary/libgallium.la \
+       $(top_builddir)/src/util/libmesautil.la \
+       $(GALLIUM_COMMON_LIB_DEPS) \
+       $(FREEDRENO_LIBS)