54a51be73925057b737c190dad518940824a721b
[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 = \
65 $(VISIBILITY_CFLAGS) \
66 -Wno-override-init -msse2
67
68 libanv_gen7_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=70
69 libanv_gen7_la_SOURCES = $(GEN7_FILES)
70
71 libanv_gen75_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=75
72 libanv_gen75_la_SOURCES = $(GEN75_FILES)
73
74 libanv_gen8_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=80
75 libanv_gen8_la_SOURCES = $(GEN8_FILES)
76
77 libanv_gen9_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=90
78 libanv_gen9_la_SOURCES = $(GEN9_FILES)
79
80
81 VULKAN_SOURCES = \
82 $(VULKAN_GENERATED_FILES) \
83 $(VULKAN_FILES)
84
85 VULKAN_LIB_DEPS =
86
87 if HAVE_PLATFORM_X11
88 AM_CPPFLAGS += \
89 $(XCB_DRI3_CFLAGS) \
90 -DVK_USE_PLATFORM_XCB_KHR \
91 -DVK_USE_PLATFORM_XLIB_KHR
92
93 VULKAN_SOURCES += $(VULKAN_WSI_X11_FILES)
94
95 # FIXME: Use pkg-config for X11-xcb ldflags.
96 VULKAN_LIB_DEPS += $(XCB_DRI3_LIBS) -lX11-xcb
97 endif
98
99
100 if HAVE_PLATFORM_WAYLAND
101 AM_CPPFLAGS += \
102 -I$(top_builddir)/src/egl/wayland/wayland-drm \
103 -I$(top_srcdir)/src/egl/wayland/wayland-drm \
104 $(WAYLAND_CFLAGS) \
105 -DVK_USE_PLATFORM_WAYLAND_KHR
106
107 VULKAN_SOURCES += $(VULKAN_WSI_WAYLAND_FILES)
108
109 VULKAN_LIB_DEPS += \
110 $(top_builddir)/src/egl/wayland/wayland-drm/libwayland-drm.la \
111 $(WAYLAND_LIBS)
112 endif
113
114 noinst_LTLIBRARIES += libvulkan_common.la
115 libvulkan_common_la_SOURCES = $(VULKAN_SOURCES)
116
117 VULKAN_LIB_DEPS += \
118 libvulkan_common.la \
119 $(top_builddir)/src/mesa/drivers/dri/i965/libi965_compiler.la \
120 $(top_builddir)/src/compiler/nir/libnir.la \
121 $(top_builddir)/src/util/libmesautil.la \
122 $(top_builddir)/src/intel/common/libintel_common.la \
123 $(top_builddir)/src/intel/isl/libisl.la \
124 $(top_builddir)/src/intel/blorp/libblorp.la \
125 $(PER_GEN_LIBS) \
126 $(PTHREAD_LIBS) \
127 $(DLOPEN_LIBS) \
128 -lm
129
130 nodist_EXTRA_libvulkan_intel_la_SOURCES = dummy.cpp
131 libvulkan_intel_la_SOURCES = $(VULKAN_GEM_FILES)
132
133 anv_entrypoints.h : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
134 $(AM_V_GEN) cat $(vulkan_include_HEADERS) |\
135 $(PYTHON2) $(srcdir)/anv_entrypoints_gen.py header > $@
136
137 anv_entrypoints.c : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
138 $(AM_V_GEN) cat $(vulkan_include_HEADERS) |\
139 $(PYTHON2) $(srcdir)/anv_entrypoints_gen.py code > $@
140
141 .PHONY: anv_timestamp.h
142
143 anv_timestamp.h:
144 @echo "Updating anv_timestamp.h"
145 $(AM_V_GEN) echo "#define ANV_TIMESTAMP \"$(TIMESTAMP_CMD)\"" > $@
146
147 BUILT_SOURCES = $(VULKAN_GENERATED_FILES)
148 CLEANFILES = $(BUILT_SOURCES) dev_icd.json intel_icd.json
149 EXTRA_DIST = \
150 $(top_srcdir)/include/vulkan/vk_icd.h \
151 anv_entrypoints_gen.py \
152 dev_icd.json.in \
153 intel_icd.json.in \
154 intel_icd.json
155
156 libvulkan_intel_la_LIBADD = $(VULKAN_LIB_DEPS)
157
158 libvulkan_intel_la_LDFLAGS = \
159 -shared \
160 -module \
161 -no-undefined \
162 -avoid-version \
163 $(BSYMBOLIC) \
164 $(GC_SECTIONS) \
165 $(LD_NO_UNDEFINED)
166
167
168 icdconfdir = @VULKAN_ICD_INSTALL_DIR@
169 icdconf_DATA = intel_icd.json
170 # The following is used for development purposes, by setting VK_ICD_FILENAMES.
171 noinst_DATA = dev_icd.json
172
173 dev_icd.json : dev_icd.json.in
174 $(AM_V_GEN) $(SED) \
175 -e "s#@build_libdir@#${abs_top_builddir}/${LIB_DIR}#" \
176 < $(srcdir)/dev_icd.json.in > $@
177
178 if VULKAN_ICD_DRIVER_PATH
179 ICD_DRIVER_PATH="${libdir}/libvulkan_intel.so"
180 else
181 ICD_DRIVER_PATH="libvulkan_intel.so"
182 endif
183
184 intel_icd.json : intel_icd.json.in
185 $(AM_V_GEN) $(SED) \
186 -e "s#@ICD_DRIVER_PATH@#${ICD_DRIVER_PATH}#" \
187 < $(srcdir)/intel_icd.json.in > $@
188
189 # Libvulkan with dummy gem. Used for unit tests.
190 libvulkan_test_la_SOURCES = $(VULKAN_GEM_STUB_FILES)
191 libvulkan_test_la_LIBADD = $(VULKAN_LIB_DEPS)
192
193 include $(top_srcdir)/install-lib-links.mk
194
195 noinst_HEADERS = \
196 tests/state_pool_test_helper.h
197
198 LDADD = \
199 libvulkan-test.la \
200 $(PTHREAD_LIBS) -lm -lstdc++
201
202 check_PROGRAMS = \
203 tests/block_pool_no_free \
204 tests/state_pool_no_free \
205 tests/state_pool_free_list_only \
206 tests/state_pool
207
208 TESTS = $(check_PROGRAMS)