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. noinst_LTLIBRARIES = libfreedreno.la
  4.  
  5. AM_CFLAGS = \
  6.         -Wno-packed-bitfield-compat \
  7.         -I$(top_srcdir)/src/gallium/drivers \
  8.         -I$(top_srcdir)/src/gallium/drivers/freedreno/a3xx \
  9.         -I$(top_srcdir)/src/gallium/drivers/freedreno/a2xx \
  10.         $(GALLIUM_CFLAGS) \
  11.         $(FREEDRENO_CFLAGS) \
  12.         $(VISIBILITY_CFLAGS)
  13.  
  14. SUBDIRS = a2xx a3xx
  15.  
  16. libfreedreno_la_SOURCES = \
  17.         freedreno_util.c \
  18.         freedreno_fence.c \
  19.         freedreno_resource.c \
  20.         freedreno_surface.c \
  21.         freedreno_draw.c \
  22.         freedreno_state.c \
  23.         freedreno_texture.c \
  24.         freedreno_context.c \
  25.         freedreno_screen.c \
  26.         freedreno_gmem.c
  27.  
  28. libfreedreno_la_LIBADD = \
  29.         a3xx/libfd3xx.la \
  30.         a2xx/libfd2xx.la
  31.  
  32.