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