1include $(top_srcdir)/src/gallium/Automake.inc 2 3PIPE_SRC_DIR = $(top_builddir)/src/gallium/targets/pipe-loader 4 5AM_CFLAGS = \ 6 $(GALLIUM_CFLAGS) 7 8LDADD = \ 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 14noinst_PROGRAMS = compute tri quad-tex 15 16compute_SOURCES = compute.c 17 18tri_SOURCES = tri.c 19 20quad_tex_SOURCES = quad-tex.c 21 22clean-local: 23 -rm -f result.bmp 24