anv/dump: Fix vkCmdPipelineBarrier flags
[mesa.git] / src / intel / vulkan / Makefile.am
1 # Copyright © 2015 Intel Corporation
2 #
3 # Permission is hereby granted, free of charge, to any person obtaining a
4 # copy of this software and associated documentation files (the "Software"),
5 # to deal in the Software without restriction, including without limitation
6 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 # and/or sell copies of the Software, and to permit persons to whom the
8 # Software is furnished to do so, subject to the following conditions:
9 #
10 # The above copyright notice and this permission notice (including the next
11 # paragraph) shall be included in all copies or substantial portions of the
12 # Software.
13 #
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20 # IN THE SOFTWARE.
21
22 include Makefile.sources
23
24 vulkan_includedir = $(includedir)/vulkan
25
26 vulkan_include_HEADERS = \
27 $(top_srcdir)/include/vulkan/vk_platform.h \
28 $(top_srcdir)/include/vulkan/vulkan.h \
29 $(top_srcdir)/include/vulkan/vulkan_intel.h
30
31 lib_LTLIBRARIES = libvulkan_intel.la
32
33 check_LTLIBRARIES = libvulkan-test.la
34
35 PER_GEN_LIBS = \
36 libanv-gen7.la \
37 libanv-gen75.la \
38 libanv-gen8.la \
39 libanv-gen9.la
40
41 noinst_LTLIBRARIES = $(PER_GEN_LIBS)
42
43 # The gallium includes are for the util/u_math.h include from main/macros.h
44
45 AM_CPPFLAGS = \
46 $(INTEL_CFLAGS) \
47 $(VALGRIND_CFLAGS) \
48 $(DEFINES) \
49 -I$(top_srcdir)/include \
50 -I$(top_builddir)/src \
51 -I$(top_srcdir)/src \
52 -I$(top_builddir)/src/compiler \
53 -I$(top_srcdir)/src/compiler \
54 -I$(top_builddir)/src/compiler/nir \
55 -I$(top_srcdir)/src/mapi \
56 -I$(top_srcdir)/src/mesa \
57 -I$(top_srcdir)/src/mesa/drivers/dri/common \
58 -I$(top_srcdir)/src/mesa/drivers/dri/i965 \
59 -I$(top_srcdir)/src/gallium/auxiliary \
60 -I$(top_srcdir)/src/gallium/include \
61 -I$(top_builddir)/src/intel \
62 -I$(top_srcdir)/src/intel
63
64 AM_CFLAGS = -Wno-override-init -msse2
65
66 libanv_gen7_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=70
67 libanv_gen7_la_SOURCES = $(GEN7_FILES)
68
69 libanv_gen75_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=75
70 libanv_gen75_la_SOURCES = $(GEN75_FILES)
71
72 libanv_gen8_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=80
73 libanv_gen8_la_SOURCES = $(GEN8_FILES)
74
75 libanv_gen9_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=90
76 libanv_gen9_la_SOURCES = $(GEN9_FILES)
77
78
79 VULKAN_SOURCES = \
80 $(VULKAN_GENERATED_FILES) \
81 $(VULKAN_FILES)
82
83 VULKAN_LIB_DEPS =
84
85 if HAVE_PLATFORM_X11
86 AM_CPPFLAGS += \
87 $(XCB_DRI3_CFLAGS) \
88 -DVK_USE_PLATFORM_XCB_KHR
89
90 VULKAN_SOURCES += $(VULKAN_WSI_X11_FILES)
91 VULKAN_LIB_DEPS += $(XCB_DRI3_LIBS)
92 endif
93
94
95 if HAVE_PLATFORM_WAYLAND
96 AM_CPPFLAGS += \
97 -I$(top_builddir)/src/egl/wayland/wayland-drm \
98 -I$(top_srcdir)/src/egl/wayland/wayland-drm \
99 $(WAYLAND_CFLAGS) \
100 -DVK_USE_PLATFORM_WAYLAND_KHR
101
102 VULKAN_SOURCES += $(VULKAN_WSI_WAYLAND_FILES)
103
104 VULKAN_LIB_DEPS += \
105 $(top_builddir)/src/egl/wayland/wayland-drm/libwayland-drm.la \
106 $(WAYLAND_LIBS)
107 endif
108
109 noinst_LTLIBRARIES += libvulkan_common.la
110 libvulkan_common_la_SOURCES = $(VULKAN_SOURCES)
111
112 VULKAN_LIB_DEPS += \
113 libvulkan_common.la \
114 $(top_builddir)/src/mesa/drivers/dri/i965/libi965_compiler.la \
115 $(top_builddir)/src/compiler/nir/libnir.la \
116 $(top_builddir)/src/util/libmesautil.la \
117 $(top_builddir)/src/intel/isl/libisl.la \
118 $(PER_GEN_LIBS) \
119 $(PTHREAD_LIBS) \
120 $(DLOPEN_LIBS) \
121 -lm
122
123 nodist_EXTRA_libvulkan_intel_la_SOURCES = dummy.cpp
124 libvulkan_intel_la_SOURCES = $(VULKAN_GEM_FILES)
125
126 anv_entrypoints.h : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
127 $(AM_V_GEN) cat $(vulkan_include_HEADERS) |\
128 $(PYTHON2) $(srcdir)/anv_entrypoints_gen.py header > $@
129
130 anv_entrypoints.c : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
131 $(AM_V_GEN) cat $(vulkan_include_HEADERS) |\
132 $(PYTHON2) $(srcdir)/anv_entrypoints_gen.py code > $@
133
134 .PHONY: anv_timestamp.h
135
136 anv_timestamp.h:
137 @echo "Updating anv_timestamp.h"
138 $(AM_V_GEN) echo "#define ANV_TIMESTAMP \"$(TIMESTAMP_CMD)\"" > $@
139
140 BUILT_SOURCES = $(VULKAN_GENERATED_FILES)
141 CLEANFILES = $(BUILT_SOURCES) dev_icd.json
142 EXTRA_DIST = \
143 $(top_srcdir)/include/vulkan/vk_icd.h \
144 anv_entrypoints_gen.py \
145 dev_icd.json.in \
146 intel_icd.json
147
148 libvulkan_intel_la_LIBADD = $(VULKAN_LIB_DEPS)
149
150 libvulkan_intel_la_LDFLAGS = \
151 -shared \
152 -module \
153 -no-undefined \
154 -avoid-version \
155 $(GC_SECTIONS) \
156 $(LD_NO_UNDEFINED)
157
158
159 icdconfdir = @VULKAN_ICD_INSTALL_DIR@
160 icdconf_DATA = intel_icd.json
161 # The following is used for development purposes, by setting VK_ICD_FILENAMES.
162 noinst_DATA = dev_icd.json
163
164 dev_icd.json : dev_icd.json.in
165 $(AM_V_GEN) $(SED) \
166 -e "s#@build_libdir@#${abs_top_builddir}/${LIB_DIR}#" \
167 < $(srcdir)/dev_icd.json.in > $@
168
169 # Libvulkan with dummy gem. Used for unit tests.
170 libvulkan_test_la_SOURCES = $(VULKAN_GEM_STUB_FILES)
171 libvulkan_test_la_LIBADD = $(VULKAN_LIB_DEPS)
172
173 include $(top_srcdir)/install-lib-links.mk
174
175 noinst_HEADERS = \
176 tests/state_pool_test_helper.h
177
178 LDADD = \
179 libvulkan-test.la \
180 $(PTHREAD_LIBS) -lm -lstdc++
181
182 check_PROGRAMS = \
183 tests/block_pool_no_free \
184 tests/state_pool_no_free \
185 tests/state_pool_free_list_only \
186 tests/state_pool
187
188 TESTS = $(check_PROGRAMS)