vk/wsi: Add Wayland WSI support
[mesa.git] / src / 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 SUBDIRS = . tests
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 $(top_srcdir)/include/vulkan/vk_wsi_swapchain.h \
31 $(top_srcdir)/include/vulkan/vk_wsi_device_swapchain.h
32
33 lib_LTLIBRARIES = libvulkan.la
34
35 check_LTLIBRARIES = libvulkan-test.la
36
37 # The gallium includes are for the util/u_math.h include from main/macros.h
38
39 AM_CPPFLAGS = \
40 $(INTEL_CFLAGS) \
41 $(VALGRIND_CFLAGS) \
42 $(DEFINES) \
43 -I$(top_srcdir)/include \
44 -I$(top_srcdir)/src \
45 -I$(top_srcdir)/src/egl/wayland/wayland-drm \
46 -I$(top_srcdir)/src/mapi \
47 -I$(top_srcdir)/src/mesa \
48 -I$(top_srcdir)/src/mesa/drivers/dri/common \
49 -I$(top_srcdir)/src/mesa/drivers/dri/i965 \
50 -I$(top_srcdir)/src/gallium/auxiliary \
51 -I$(top_srcdir)/src/gallium/include \
52 -I$(top_builddir)/src/vulkan
53
54 libvulkan_la_CFLAGS = \
55 -Wall -Wextra -Wno-unused-parameter -fvisibility=hidden -O0 -g \
56 -Wstrict-prototypes -Wmissing-prototypes -Wno-override-init
57
58 libvulkan_la_CXXFLAGS = \
59 -Wall -Wextra -Wno-unused-parameter -fvisibility=hidden -O0 -g
60
61 VULKAN_SOURCES = \
62 anv_allocator.c \
63 anv_cmd_buffer.c \
64 anv_batch_chain.c \
65 anv_compiler.cpp \
66 anv_device.c \
67 anv_entrypoints.c \
68 anv_entrypoints.h \
69 anv_formats.c \
70 anv_image.c \
71 anv_intel.c \
72 anv_meta.c \
73 anv_pipeline.c \
74 anv_private.h \
75 anv_query.c \
76 anv_util.c \
77 anv_wsi.c \
78 anv_wsi_wayland.c \
79 anv_wsi_x11.c \
80 gen8_state.c \
81 gen8_cmd_buffer.c \
82 gen8_pipeline.c \
83 gen7_state.c \
84 gen7_cmd_buffer.c \
85 gen7_pipeline.c
86
87 libvulkan_la_SOURCES = \
88 $(VULKAN_SOURCES) \
89 anv_gem.c
90
91 BUILT_SOURCES = \
92 anv_entrypoints.h \
93 anv_entrypoints.c \
94 anv_meta_spirv_autogen.h
95
96 anv_entrypoints.h : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
97 $(AM_V_GEN)cat $(vulkan_include_HEADERS) | $(PYTHON2) $< header > $@
98
99 anv_entrypoints.c : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
100 $(AM_V_GEN)cat $(vulkan_include_HEADERS) | $(PYTHON2) $< code > $@
101
102 %_spirv_autogen.h: %.c glsl_scraper.py
103 $(AM_V_GEN) $(PYTHON3) $(srcdir)/glsl_scraper.py --with-glslc=$(GLSLC) -o $@ $<
104
105 CLEANFILES = $(BUILT_SOURCES)
106
107 libvulkan_la_LIBADD = -lxcb -lxcb-dri3 \
108 $(top_builddir)/src/mesa/drivers/dri/i965/libi965_compiler.la
109
110 # Libvulkan with dummy gem. Used for unit tests.
111
112 libvulkan_test_la_SOURCES = \
113 $(VULKAN_SOURCES) \
114 anv_gem_stubs.c
115
116 libvulkan_test_la_CFLAGS = $(libvulkan_la_CFLAGS)
117 libvulkan_test_la_CXXFLAGS = $(libvulkan_la_CXXFLAGS)
118 libvulkan_test_la_LIBADD = $(libvulkan_la_LIBADD)
119
120 include $(top_srcdir)/install-lib-links.mk