diff options
Diffstat (limited to 'src/gallium/tests/trivial/Makefile.am')
-rw-r--r-- | src/gallium/tests/trivial/Makefile.am | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/src/gallium/tests/trivial/Makefile.am b/src/gallium/tests/trivial/Makefile.am new file mode 100644 index 00000000000..e6e9ae73d12 --- /dev/null +++ b/src/gallium/tests/trivial/Makefile.am @@ -0,0 +1,34 @@ +include $(top_srcdir)/src/gallium/Automake.inc + +PIPE_SRC_DIR = $(top_builddir)/src/gallium/targets/pipe-loader + +AM_CFLAGS = \ + $(GALLIUM_CFLAGS) + +AM_CPPFLAGS = \ + -I$(top_srcdir)/src/gallium/drivers \ + -I$(top_srcdir)/src/gallium/winsys \ + -DPIPE_SEARCH_DIR=\"$(PIPE_SRC_DIR)/.libs\" \ + $(GALLIUM_PIPE_LOADER_DEFINES) + +LDADD = $(GALLIUM_PIPE_LOADER_LIBS) \ + $(top_builddir)/src/gallium/auxiliary/libgallium.la \ + $(LIBUDEV_LIBS) \ + $(DLOPEN_LIBS) \ + $(PTHREAD_LIBS) \ + -lm + +noinst_PROGRAMS = compute tri quad-tex + +compute_SOURCES = compute.c + +tri_SOURCES = tri.c + +quad_tex_SOURCES = quad-tex.c + +all-local: + @$(MAKE) -C $(PIPE_SRC_DIR) + +clean-local: + @$(MAKE) -C $(PIPE_SRC_DIR) clean + -rm -f result.bmp |