freedreno/ir3: 'keeps' need neighbors found too
[mesa.git] / src / gallium / drivers / freedreno / Makefile.am
index 9f5a80af97925afabc666ec6c03fc8b98dbbccc9..dff95ba5270b84b46abebd6a7464b55084a3cdd7 100644 (file)
@@ -1,22 +1,34 @@
 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 \
+       -I$(top_builddir)/src/glsl/nir \
+       $(GALLIUM_DRIVER_CFLAGS) \
+       $(FREEDRENO_CFLAGS)
+
+noinst_LTLIBRARIES = libfreedreno.la
 
-SUBDIRS = a2xx a3xx
+libfreedreno_la_SOURCES = \
+       $(C_SOURCES) \
+       $(a2xx_SOURCES) \
+       $(a3xx_SOURCES) \
+       $(a4xx_SOURCES) \
+       $(ir3_SOURCES)
 
-libfreedreno_la_SOURCES = $(C_SOURCES)
+noinst_PROGRAMS = ir3_compiler
 
-libfreedreno_la_LIBADD = \
-       a3xx/libfd3xx.la \
-       a2xx/libfd2xx.la
+# XXX: Required due to the C++ sources in libnir/libglsl_util
+nodist_EXTRA_ir3_compiler_SOURCES = dummy.cpp
+ir3_compiler_SOURCES = \
+       ir3/ir3_cmdline.c
 
+ir3_compiler_LDADD = \
+       libfreedreno.la \
+       $(top_builddir)/src/gallium/auxiliary/libgallium.la \
+       $(top_builddir)/src/glsl/libnir.la \
+       $(top_builddir)/src/libglsl_util.la \
+       $(top_builddir)/src/util/libmesautil.la \
+       $(GALLIUM_COMMON_LIB_DEPS) \
+       $(FREEDRENO_LIBS)