Home | History | Annotate | Download | only in trivial
      1 include $(top_srcdir)/src/gallium/Automake.inc
      2 
      3 PIPE_SRC_DIR = $(top_builddir)/src/gallium/targets/pipe-loader
      4 
      5 AM_CFLAGS = \
      6 	$(GALLIUM_CFLAGS)
      7 
      8 LDADD = \
      9 	$(top_builddir)/src/gallium/auxiliary/pipe-loader/libpipe_loader_dynamic.la \
     10 	$(top_builddir)/src/gallium/auxiliary/libgallium.la \
     11 	$(top_builddir)/src/util/libmesautil.la \
     12 	$(GALLIUM_COMMON_LIB_DEPS)
     13 
     14 noinst_PROGRAMS = compute tri quad-tex
     15 
     16 compute_SOURCES = compute.c
     17 
     18 tri_SOURCES = tri.c
     19 
     20 quad_tex_SOURCES = quad-tex.c
     21 
     22 clean-local:
     23 	-rm -f result.bmp
     24