8538046e5679e855234e1fc0e974d840feb9dbce
[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_ext_khr_swapchain.h \
31 $(top_srcdir)/include/vulkan/vk_ext_khr_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/glsl/nir \
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 -Wno-unused-parameter -fvisibility=hidden -O0 -g \
56 -Wstrict-prototypes -Wmissing-prototypes -Wno-override-init
57
58 VULKAN_SOURCES = \
59 anv_allocator.c \
60 anv_cmd_buffer.c \
61 anv_batch_chain.c \
62 anv_device.c \
63 anv_dump.c \
64 anv_entrypoints.c \
65 anv_entrypoints.h \
66 anv_formats.c \
67 anv_image.c \
68 anv_intel.c \
69 anv_meta.c \
70 anv_nir_apply_dynamic_offsets.c \
71 anv_nir_apply_pipeline_layout.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
89 if HAVE_EGL_PLATFORM_WAYLAND
90 BUILT_SOURCES += \
91 wayland-drm-protocol.c \
92 wayland-drm-client-protocol.h
93
94 %-protocol.c : $(top_srcdir)/src/egl/wayland/wayland-drm/%.xml
95 $(AM_V_GEN)$(WAYLAND_SCANNER) code < $< > $@
96
97 %-client-protocol.h : $(top_srcdir)/src/egl/wayland/wayland-drm/%.xml
98 $(AM_V_GEN)$(WAYLAND_SCANNER) client-header < $< > $@
99
100 AM_CPPFLAGS += -I$(top_srcdir)/src/egl/wayland/wayland-drm
101 VULKAN_SOURCES += \
102 wayland-drm-protocol.c \
103 anv_wsi_wayland.c
104 libvulkan_la_CFLAGS += -DHAVE_WAYLAND_PLATFORM
105 endif
106
107 libvulkan_la_SOURCES = \
108 $(VULKAN_SOURCES) \
109 anv_gem.c
110
111 anv_entrypoints.h : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
112 $(AM_V_GEN)cat $(vulkan_include_HEADERS) | $(PYTHON2) $< header > $@
113
114 anv_entrypoints.c : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
115 $(AM_V_GEN)cat $(vulkan_include_HEADERS) | $(PYTHON2) $< code > $@
116
117 CLEANFILES = $(BUILT_SOURCES)
118
119 libvulkan_la_LIBADD = $(WAYLAND_LIBS) -lxcb -lxcb-dri3 \
120 $(top_builddir)/src/mesa/drivers/dri/i965/libi965_compiler.la \
121 ../mesa/libmesa.la \
122 ../mesa/drivers/dri/common/libdri_test_stubs.la \
123 -lpthread -ldl -lstdc++
124
125 # Libvulkan with dummy gem. Used for unit tests.
126
127 libvulkan_test_la_SOURCES = \
128 $(VULKAN_SOURCES) \
129 anv_gem_stubs.c
130
131 libvulkan_test_la_CFLAGS = $(libvulkan_la_CFLAGS)
132 libvulkan_test_la_LIBADD = $(libvulkan_la_LIBADD)
133
134 include $(top_srcdir)/install-lib-links.mk