Subversion Repositories Kolibri OS

Rev

Blame | Last modification | View Log | RSS feed

  1. AUTOMAKE_OPTIONS = subdir-objects
  2.  
  3. include Makefile.sources
  4. include $(top_srcdir)/src/gallium/Automake.inc
  5.  
  6. AM_CFLAGS = \
  7.         -Wno-packed-bitfield-compat \
  8.         -I$(top_srcdir)/src/gallium/drivers/freedreno/ir3 \
  9.         -I$(top_builddir)/src/glsl/nir \
  10.         $(GALLIUM_DRIVER_CFLAGS) \
  11.         $(FREEDRENO_CFLAGS)
  12.  
  13. noinst_LTLIBRARIES = libfreedreno.la
  14.  
  15. libfreedreno_la_SOURCES = \
  16.         $(C_SOURCES) \
  17.         $(a2xx_SOURCES) \
  18.         $(a3xx_SOURCES) \
  19.         $(a4xx_SOURCES) \
  20.         $(ir3_SOURCES)
  21.  
  22. noinst_PROGRAMS = ir3_compiler
  23.  
  24. ir3_compiler_SOURCES = \
  25.         ir3/ir3_cmdline.c
  26.  
  27. ir3_compiler_LDADD = \
  28.         libfreedreno.la \
  29.         ../../auxiliary/libgallium.la \
  30.         $(top_builddir)/src/glsl/libnir.la \
  31.         $(top_builddir)/src/libglsl_util.la \
  32.         -lstdc++ \
  33.         $(top_builddir)/src/util/libmesautil.la \
  34.         $(GALLIUM_COMMON_LIB_DEPS) \
  35.         $(FREEDRENO_LIBS)
  36.