1include $(top_srcdir)/src/gallium/Automake.inc 2 3AM_CFLAGS = \ 4 $(PTHREAD_CFLAGS) 5 6AM_CXXFLAGS = \ 7 $(GALLIUM_DRIVER_CXXFLAGS) \ 8 $(CXX11_CXXFLAGS) 9 10AM_CPPFLAGS = \ 11 -I$(top_srcdir)/src/gtest/include \ 12 -I$(top_srcdir)/src/mapi \ 13 -I$(top_builddir)/src/mesa \ 14 -I$(top_srcdir)/src/mesa \ 15 -I$(top_builddir)/src/compiler/glsl \ 16 $(DEFINES) 17 18if HAVE_STD_CXX11 19TESTS = st-renumerate-test 20check_PROGRAMS = st-renumerate-test 21endif 22 23st_renumerate_test_SOURCES = \ 24 test_glsl_to_tgsi_lifetime.cpp 25 26st_renumerate_test_LDFLAGS = \ 27 $(LLVM_LDFLAGS) 28 29st_renumerate_test_LDADD = \ 30 $(top_builddir)/src/mesa/libmesagallium.la \ 31 $(top_builddir)/src/mapi/shared-glapi/libglapi.la \ 32 $(top_builddir)/src/gallium/auxiliary/libgallium.la \ 33 $(top_builddir)/src/util/libmesautil.la \ 34 $(top_builddir)/src/gtest/libgtest.la \ 35 $(GALLIUM_COMMON_LIB_DEPS) \ 36 $(LLVM_LIBS) 37