Subversion Repositories Kolibri OS

Rev

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

  1. AUTOMAKE_OPTIONS = subdir-objects
  2.  
  3. lib_LTLIBRARIES = libOpenCL.la
  4.  
  5. libOpenCL_la_LDFLAGS = \
  6.         $(LLVM_LDFLAGS) \
  7.         -version-number 1:0
  8.  
  9. libOpenCL_la_LIBADD = \
  10.         $(top_builddir)/src/gallium/auxiliary/pipe-loader/libpipe_loader.la \
  11.         $(top_builddir)/src/gallium/winsys/sw/null/libws_null.la \
  12.         $(top_builddir)/src/gallium/state_trackers/clover/libclover.la \
  13.         $(top_builddir)/src/gallium/auxiliary/libgallium.la \
  14.         $(GALLIUM_PIPE_LOADER_LIBS) $(LIBUDEV_LIBS) \
  15.         -ldl \
  16.         -lclangCodeGen \
  17.         -lclangFrontendTool \
  18.         -lclangFrontend \
  19.         -lclangDriver \
  20.         -lclangSerialization \
  21.         -lclangCodeGen \
  22.         -lclangParse \
  23.         -lclangSema \
  24.         -lclangAnalysis \
  25.         -lclangAST \
  26.         -lclangEdit \
  27.         -lclangLex \
  28.         -lclangBasic \
  29.         $(LLVM_LIBS)
  30.  
  31.  
  32. libOpenCL_la_SOURCES =
  33.  
  34. # Force usage of a C++ linker
  35. nodist_EXTRA_libOpenCL_la_SOURCES = dummy.cpp
  36.  
  37. # Provide compatibility with scripts for the old Mesa build system for
  38. # a while by putting a link to the driver into /lib of the build tree.
  39. all-local: libOpenCL.la
  40.         $(MKDIR_P) $(top_builddir)/$(LIB_DIR)
  41.         ln -f .libs/libOpenCL.so* $(top_builddir)/$(LIB_DIR)/
  42.