1include Makefile.sources 2include $(top_srcdir)/src/gallium/Automake.inc 3 4AM_CFLAGS = \ 5 -I$(top_srcdir)/src \ 6 -I$(top_srcdir)/src/mesa/program \ 7 -I$(top_srcdir)/src/mesa \ 8 -I$(top_srcdir)/src/glsl \ 9 -I$(top_srcdir)/src/mapi \ 10 $(GALLIUM_DRIVER_CFLAGS) \ 11 $(LLVM_CFLAGS) \ 12 $(RADEON_CFLAGS) 13 14noinst_LTLIBRARIES = libr300.la 15check_PROGRAMS = r300_compiler_tests 16TESTS = r300_compiler_tests 17 18r300_compiler_tests_LDADD = libr300.la \ 19 $(top_builddir)/src/gallium/auxiliary/libgallium.la \ 20 $(top_builddir)/src/util/libmesautil.la \ 21 $(GALLIUM_COMMON_LIB_DEPS) 22r300_compiler_tests_CPPFLAGS = \ 23 -DTEST_PATH=\"$(top_srcdir)/src/gallium/drivers/r300/compiler/tests\" \ 24 -I$(top_srcdir)/src/gallium/drivers/r300/compiler 25r300_compiler_tests_SOURCES = $(COMPILER_TESTS_SOURCES) 26 27libr300_la_SOURCES = $(C_SOURCES) 28 29EXTRA_DIST = \ 30 compiler/tests/omod_two_writers.test \ 31 compiler/tests/regalloc_tex_1d_swizzle.test \ 32 meson.build 33