mesa/st: glsl_to_tgsi: add tests for the new temporary lifetime tracker
[mesa.git] / src / mesa / state_tracker / tests / Makefile.am
1 AM_CFLAGS = \
2 $(PTHREAD_CFLAGS)
3
4 AM_CXXFLAGS = \
5 $(LLVM_CXXFLAGS)
6
7 AM_CPPFLAGS = \
8 -I$(top_srcdir)/src/gtest/include \
9 -I$(top_srcdir)/src \
10 -I$(top_srcdir)/src/mapi \
11 -I$(top_builddir)/src/mesa \
12 -I$(top_srcdir)/src/mesa \
13 -I$(top_srcdir)/include \
14 -I$(top_srcdir)/src/gallium/include \
15 -I$(top_srcdir)/src/gallium/auxiliary \
16 $(DEFINES)
17
18 TESTS = st-renumerate-test
19 check_PROGRAMS = st-renumerate-test
20
21 st_renumerate_test_SOURCES = \
22 test_glsl_to_tgsi_lifetime.cpp
23
24 st_renumerate_test_LDFLAGS = \
25 $(LLVM_LDFLAGS)
26
27 st_renumerate_test_LDADD = \
28 $(top_builddir)/src/mesa/libmesagallium.la \
29 $(top_builddir)/src/mapi/shared-glapi/libglapi.la \
30 $(top_builddir)/src/gallium/auxiliary/libgallium.la \
31 $(top_builddir)/src/util/libmesautil.la \
32 $(top_builddir)/src/gtest/libgtest.la \
33 $(GALLIUM_COMMON_LIB_DEPS) \
34 $(LLVM_LIBS) \
35 $(PTHREAD_LIBS) \
36 $(DLOPEN_LIBS)