Home | History | Annotate | Download | only in unit
      1 # TODO: wire up some useful tests to make check
      2 
      3 include $(top_srcdir)/src/gallium/Automake.inc
      4 
      5 EXTRA_DIST = SConscript
      6 
      7 AM_CFLAGS = \
      8 	$(GALLIUM_CFLAGS)
      9 
     10 AM_CPPFLAGS = \
     11 	-I$(top_srcdir)/src/gallium/drivers \
     12 	-I$(top_srcdir)/src/gallium/winsys
     13 
     14 LDADD = \
     15 	$(top_builddir)/src/gallium/auxiliary/libgallium.la \
     16 	$(top_builddir)/src/util/libmesautil.la \
     17 	$(top_builddir)/src/gallium/drivers/trace/libtrace.la \
     18 	$(top_builddir)/src/gallium/winsys/sw/null/libws_null.la \
     19 	$(top_builddir)/src/gallium/drivers/softpipe/libsoftpipe.la \
     20 	$(GALLIUM_COMMON_LIB_DEPS)
     21 
     22 noinst_PROGRAMS = pipe_barrier_test u_cache_test u_half_test \
     23 	u_format_test u_format_compatible_test translate_test
     24 
     25 pipe_barrier_test_SOURCES = pipe_barrier_test.c
     26 
     27 u_cache_test_SOURCES = u_cache_test.c
     28 
     29 u_half_test_SOURCES = u_half_test.c
     30 
     31 u_format_test_SOURCES = u_format_test.c
     32 
     33 u_format_compatible_test_SOURCES = u_format_compatible_test.c
     34 
     35 translate_test_SOURCES = translate_test.c
     36