Merge branch 'nir-spirv' 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_pipeline.c \
73 anv_private.h \
74 anv_query.c \
75 anv_util.c \
76 anv_wsi.c \
77 anv_wsi_x11.c \
78 gen8_state.c \
79 gen8_cmd_buffer.c \
80 gen8_pipeline.c \
81 gen7_state.c \
82 gen7_cmd_buffer.c \
83 gen7_pipeline.c
84
85 BUILT_SOURCES = \
86 anv_entrypoints.h \
87 anv_entrypoints.c \
88 anv_meta_spirv_autogen.h
89
90 if HAVE_EGL_PLATFORM_WAYLAND
91 BUILT_SOURCES += \
92 wayland-drm-protocol.c \
93 wayland-drm-client-protocol.h
94
95 %-protocol.c : $(top_srcdir)/src/egl/wayland/wayland-drm/%.xml
96 $(AM_V_GEN)$(WAYLAND_SCANNER) code < $< > $@
97
98 %-client-protocol.h : $(top_srcdir)/src/egl/wayland/wayland-drm/%.xml
99 $(AM_V_GEN)$(WAYLAND_SCANNER) client-header < $< > $@
100
101 AM_CPPFLAGS += -I$(top_srcdir)/src/egl/wayland/wayland-drm
102 VULKAN_SOURCES += \
103 wayland-drm-protocol.c \
104 anv_wsi_wayland.c
105 libvulkan_la_CFLAGS += -DHAVE_WAYLAND_PLATFORM
106 endif
107
108 libvulkan_la_SOURCES = \
109 $(VULKAN_SOURCES) \
110 anv_gem.c
111
112 anv_entrypoints.h : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
113 $(AM_V_GEN)cat $(vulkan_include_HEADERS) | $(PYTHON2) $< header > $@
114
115 anv_entrypoints.c : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
116 $(AM_V_GEN)cat $(vulkan_include_HEADERS) | $(PYTHON2) $< code > $@
117
118 %_spirv_autogen.h: %.c glsl_scraper.py
119 $(AM_V_GEN) $(PYTHON3) $(srcdir)/glsl_scraper.py --with-glslc=$(GLSLC) -o $@ $<
120
121 CLEANFILES = $(BUILT_SOURCES)
122
123 libvulkan_la_LIBADD = $(WAYLAND_LIBS) -lxcb -lxcb-dri3 \
124 $(top_builddir)/src/mesa/drivers/dri/i965/libi965_compiler.la
125
126 # Libvulkan with dummy gem. Used for unit tests.
127
128 libvulkan_test_la_SOURCES = \
129 $(VULKAN_SOURCES) \
130 anv_gem_stubs.c
131
132 libvulkan_test_la_CFLAGS = $(libvulkan_la_CFLAGS)
133 libvulkan_test_la_CXXFLAGS = $(libvulkan_la_CXXFLAGS)
134 libvulkan_test_la_LIBADD = $(libvulkan_la_LIBADD)
135
136 include $(top_srcdir)/install-lib-links.mk