OSDN Git Service

709842d1ec4c6ddd1a332958dc0cb6aad95c5a46
[android-x86/external-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
88 if HAVE_PLATFORM_X11
89 AM_CPPFLAGS += \
90         $(XCB_DRI3_CFLAGS) \
91         -DVK_USE_PLATFORM_XCB_KHR
92
93 VULKAN_SOURCES += $(VULKAN_WSI_X11_FILES)
94 VULKAN_LIB_DEPS += $(XCB_DRI3_LIBS)
95 endif
96
97
98 if HAVE_PLATFORM_WAYLAND
99 AM_CPPFLAGS += \
100         -I$(top_builddir)/src/egl/wayland/wayland-drm \
101         -I$(top_srcdir)/src/egl/wayland/wayland-drm \
102         $(WAYLAND_CFLAGS) \
103         -DVK_USE_PLATFORM_WAYLAND_KHR
104
105 VULKAN_SOURCES += $(VULKAN_WSI_WAYLAND_FILES)
106
107 VULKAN_LIB_DEPS += \
108         $(top_builddir)/src/egl/wayland/wayland-drm/libwayland-drm.la \
109         $(WAYLAND_LIBS)
110 endif
111
112 noinst_LTLIBRARIES += libvulkan_common.la
113 libvulkan_common_la_SOURCES = $(VULKAN_SOURCES)
114
115 VULKAN_LIB_DEPS += \
116         libvulkan_common.la \
117         $(top_builddir)/src/mesa/drivers/dri/i965/libi965_compiler.la \
118         $(top_builddir)/src/compiler/nir/libnir.la \
119         $(top_builddir)/src/util/libmesautil.la \
120         $(top_builddir)/src/intel/isl/libisl.la \
121         $(PER_GEN_LIBS) \
122         $(PTHREAD_LIBS) \
123         $(DLOPEN_LIBS) \
124         -lm
125
126 nodist_EXTRA_libvulkan_intel_la_SOURCES = dummy.cpp
127 libvulkan_intel_la_SOURCES = $(VULKAN_GEM_FILES)
128
129 VULKAN_ENTRYPOINT_CPPFLAGS = \
130         $(XCB_DRI3_CFLAGS) \
131         $(WAYLAND_CFLAGS) \
132         -DVK_USE_PLATFORM_XCB_KHR \
133         -DVK_USE_PLATFORM_WAYLAND_KHR
134
135 anv_entrypoints.h : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
136         $(AM_V_GEN)$(CPP) $(VULKAN_ENTRYPOINT_CPPFLAGS) $(top_srcdir)/include/vulkan/vulkan_intel.h |\
137         $(PYTHON2) $(srcdir)/anv_entrypoints_gen.py header > $@
138
139 anv_entrypoints.c : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
140         $(AM_V_GEN)$(CPP) $(VULKAN_ENTRYPOINT_CPPFLAGS) $(top_srcdir)/include/vulkan/vulkan_intel.h |\
141         $(PYTHON2) $(srcdir)/anv_entrypoints_gen.py code > $@
142
143 .PHONY: anv_timestamp.h
144
145 anv_timestamp.h:
146         @echo "Updating anv_timestamp.h"
147         $(AM_V_GEN) echo "#define ANV_TIMESTAMP \"$(TIMESTAMP_CMD)\"" > $@
148
149 BUILT_SOURCES = $(VULKAN_GENERATED_FILES)
150 CLEANFILES = $(BUILT_SOURCES) dev_icd.json
151 EXTRA_DIST = \
152         $(top_srcdir)/include/vulkan/vk_icd.h \
153         anv_entrypoints_gen.py \
154         dev_icd.json.in \
155         intel_icd.json
156
157 libvulkan_intel_la_LIBADD = $(VULKAN_LIB_DEPS)
158
159 libvulkan_intel_la_LDFLAGS = \
160         -shared \
161         -module \
162         -no-undefined \
163         -avoid-version \
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 # Libvulkan with dummy gem. Used for unit tests.
179 libvulkan_test_la_SOURCES = $(VULKAN_GEM_STUB_FILES)
180 libvulkan_test_la_LIBADD = $(VULKAN_LIB_DEPS)
181
182 include $(top_srcdir)/install-lib-links.mk
183
184 noinst_HEADERS = \
185         tests/state_pool_test_helper.h
186
187 LDADD = \
188         libvulkan-test.la \
189         $(PTHREAD_LIBS) -lm -lstdc++
190
191 check_PROGRAMS = \
192         tests/block_pool_no_free \
193         tests/state_pool_no_free \
194         tests/state_pool_free_list_only \
195         tests/state_pool
196
197 TESTS = $(check_PROGRAMS)