Merge remote-tracking branch 'mesa-public/master' into vulkan
[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/mapi \
46 -I$(top_srcdir)/src/mesa \
47 -I$(top_srcdir)/src/mesa/drivers/dri/common \
48 -I$(top_srcdir)/src/mesa/drivers/dri/i965 \
49 -I$(top_srcdir)/src/gallium/auxiliary \
50 -I$(top_srcdir)/src/gallium/include \
51 -I$(top_builddir)/src/vulkan
52
53 libvulkan_la_CFLAGS = \
54 -Wall -Wextra -Wno-unused-parameter -fvisibility=hidden -O0 -g \
55 -Wstrict-prototypes -Wmissing-prototypes -Wno-override-init
56
57 libvulkan_la_CXXFLAGS = \
58 -Wall -Wextra -Wno-unused-parameter -fvisibility=hidden -O0 -g
59
60 VULKAN_SOURCES = \
61 anv_allocator.c \
62 anv_cmd_buffer.c \
63 anv_batch_chain.c \
64 anv_compiler.cpp \
65 anv_device.c \
66 anv_entrypoints.c \
67 anv_entrypoints.h \
68 anv_formats.c \
69 anv_image.c \
70 anv_intel.c \
71 anv_meta.c \
72 anv_nir_apply_dynamic_offsets.c \
73 anv_pipeline.c \
74 anv_private.h \
75 anv_query.c \
76 anv_util.c \
77 anv_wsi.c \
78 anv_wsi_x11.c \
79 gen8_state.c \
80 gen8_cmd_buffer.c \
81 gen8_pipeline.c \
82 gen7_state.c \
83 gen7_cmd_buffer.c \
84 gen7_pipeline.c
85
86 BUILT_SOURCES = \
87 anv_entrypoints.h \
88 anv_entrypoints.c \
89 anv_meta_spirv_autogen.h
90
91 if HAVE_EGL_PLATFORM_WAYLAND
92 BUILT_SOURCES += \
93 wayland-drm-protocol.c \
94 wayland-drm-client-protocol.h
95
96 %-protocol.c : $(top_srcdir)/src/egl/wayland/wayland-drm/%.xml
97 $(AM_V_GEN)$(WAYLAND_SCANNER) code < $< > $@
98
99 %-client-protocol.h : $(top_srcdir)/src/egl/wayland/wayland-drm/%.xml
100 $(AM_V_GEN)$(WAYLAND_SCANNER) client-header < $< > $@
101
102 AM_CPPFLAGS += -I$(top_srcdir)/src/egl/wayland/wayland-drm
103 VULKAN_SOURCES += \
104 wayland-drm-protocol.c \
105 anv_wsi_wayland.c
106 libvulkan_la_CFLAGS += -DHAVE_WAYLAND_PLATFORM
107 endif
108
109 libvulkan_la_SOURCES = \
110 $(VULKAN_SOURCES) \
111 anv_gem.c
112
113 anv_entrypoints.h : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
114 $(AM_V_GEN)cat $(vulkan_include_HEADERS) | $(PYTHON2) $< header > $@
115
116 anv_entrypoints.c : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
117 $(AM_V_GEN)cat $(vulkan_include_HEADERS) | $(PYTHON2) $< code > $@
118
119 CLEANFILES = $(BUILT_SOURCES)
120
121 libvulkan_la_LIBADD = $(WAYLAND_LIBS) -lxcb -lxcb-dri3 \
122 $(top_builddir)/src/mesa/drivers/dri/i965/libi965_compiler.la
123
124 # Libvulkan with dummy gem. Used for unit tests.
125
126 libvulkan_test_la_SOURCES = \
127 $(VULKAN_SOURCES) \
128 anv_gem_stubs.c
129
130 libvulkan_test_la_CFLAGS = $(libvulkan_la_CFLAGS)
131 libvulkan_test_la_CXXFLAGS = $(libvulkan_la_CXXFLAGS)
132 libvulkan_test_la_LIBADD = $(libvulkan_la_LIBADD)
133
134 include $(top_srcdir)/install-lib-links.mk