Browse Source

anv: place the builddir includes before the srcdir ones

Otherwise we risk picking the possibly outdated file in the source dir
over the fresh one in the builddir.

Signed-off-by: Emil Velikov <emil.velikov@collabora.com>
Acked-by: Jason Ekstrand <jason@jlekstrand.net>
tags/12.0-branchpoint
Emil Velikov 9 years ago
parent
commit
446234033d
1 changed files with 5 additions and 5 deletions
  1. 5
    5
      src/intel/vulkan/Makefile.am

+ 5
- 5
src/intel/vulkan/Makefile.am View File

$(DEFINES) \ $(DEFINES) \
-I$(top_srcdir)/include \ -I$(top_srcdir)/include \
-I$(top_srcdir)/include/vulkan \ -I$(top_srcdir)/include/vulkan \
-I$(top_builddir)/src \
-I$(top_srcdir)/src \ -I$(top_srcdir)/src \
-I$(top_builddir)/src/compiler \
-I$(top_srcdir)/src/compiler \ -I$(top_srcdir)/src/compiler \
-I$(top_builddir)/src/compiler/nir \
-I$(top_srcdir)/src/mapi \ -I$(top_srcdir)/src/mapi \
-I$(top_srcdir)/src/mesa \ -I$(top_srcdir)/src/mesa \
-I$(top_srcdir)/src/mesa/drivers/dri/common \ -I$(top_srcdir)/src/mesa/drivers/dri/common \
-I$(top_srcdir)/src/mesa/drivers/dri/i965 \ -I$(top_srcdir)/src/mesa/drivers/dri/i965 \
-I$(top_srcdir)/src/gallium/auxiliary \ -I$(top_srcdir)/src/gallium/auxiliary \
-I$(top_srcdir)/src/gallium/include \ -I$(top_srcdir)/src/gallium/include \
-I$(top_srcdir)/src/intel/ \
-I$(top_builddir)/src \
-I$(top_builddir)/src/compiler \
-I$(top_builddir)/src/compiler/nir \
-I$(top_builddir)/src/intel
-I$(top_builddir)/src/intel \
-I$(top_srcdir)/src/intel


AM_CFLAGS = -Wno-override-init -msse2 AM_CFLAGS = -Wno-override-init -msse2



Loading…
Cancel
Save