Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | RSS feed

  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. AM_CPPFLAGS = \
  9.         -I$(top_srcdir)/src/gallium/drivers \
  10.         -I$(top_srcdir)/src/gallium/winsys \
  11.         -DPIPE_SEARCH_DIR=\"$(PIPE_SRC_DIR)/.libs\" \
  12.         $(GALLIUM_PIPE_LOADER_DEFINES)
  13.  
  14. LDADD = $(GALLIUM_PIPE_LOADER_LIBS) \
  15.         $(top_builddir)/src/gallium/auxiliary/pipe-loader/libpipe_loader.la \
  16.         $(top_builddir)/src/gallium/winsys/sw/null/libws_null.la \
  17.         $(top_builddir)/src/gallium/auxiliary/libgallium.la \
  18.         $(LIBUDEV_LIBS) \
  19.         $(DLOPEN_LIBS) \
  20.         $(PTHREAD_LIBS) \
  21.         -lm
  22.  
  23. noinst_PROGRAMS = compute tri quad-tex
  24.  
  25. compute_SOURCES = compute.c
  26.  
  27. tri_SOURCES = tri.c
  28.  
  29. quad_tex_SOURCES = quad-tex.c
  30.  
  31. clean-local:
  32.         -rm -f result.bmp
  33.