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_lunarg.h
31
32 lib_LTLIBRARIES = libvulkan.la
33
34 check_LTLIBRARIES = libvulkan-test.la
35
36 # The gallium includes are for the util/u_math.h include from main/macros.h
37
38 AM_CPPFLAGS = \
39 $(INTEL_CFLAGS) \
40 $(VALGRIND_CFLAGS) \
41 $(DEFINES) \
42 -I$(top_srcdir)/include \
43 -I$(top_srcdir)/src \
44 -I$(top_srcdir)/src/mapi \
45 -I$(top_srcdir)/src/mesa \
46 -I$(top_srcdir)/src/mesa/drivers/dri/common \
47 -I$(top_srcdir)/src/mesa/drivers/dri/i965 \
48 -I$(top_srcdir)/src/gallium/auxiliary \
49 -I$(top_srcdir)/src/gallium/include \
50 -I$(top_builddir)/src/vulkan
51
52 libvulkan_la_CFLAGS = \
53 -Wall -Wextra -Wno-unused-parameter -fvisibility=hidden -O0 -g \
54 -Wstrict-prototypes -Wmissing-prototypes -Wno-override-init
55
56 libvulkan_la_CXXFLAGS = \
57 -Wall -Wextra -Wno-unused-parameter -fvisibility=hidden -O0 -g
58
59 VULKAN_SOURCES = \
60 anv_allocator.c \
61 anv_aub.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_x11.c
77
78 libvulkan_la_SOURCES = \
79 $(VULKAN_SOURCES) \
80 anv_gem.c
81
82 BUILT_SOURCES = \
83 anv_entrypoints.h \
84 anv_entrypoints.c \
85 anv_meta_spirv.h
86
87 anv_entrypoints.h : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
88 $(AM_V_GEN)cat $(vulkan_include_HEADERS) | $(PYTHON2) $< header > $@
89
90 anv_entrypoints.c : anv_entrypoints_gen.py $(vulkan_include_HEADERS)
91 $(AM_V_GEN)cat $(vulkan_include_HEADERS) | $(PYTHON2) $< code > $@
92
93 %_spirv.h: %.c glsl_scraper.py
94 $(AM_V_GEN) $(PYTHON2) $(srcdir)/glsl_scraper.py --glsl-only -o $@ $<
95
96 CLEANFILES = $(BUILT_SOURCES)
97
98 libvulkan_la_LIBADD = -lxcb -lxcb-dri3 \
99 $(top_builddir)/src/mesa/drivers/dri/i965/libi965_compiler.la
100
101 # Libvulkan with dummy gem. Used for unit tests.
102
103 libvulkan_test_la_SOURCES = \
104 $(VULKAN_SOURCES) \
105 anv_gem_stubs.c
106
107 libvulkan_test_la_CFLAGS = $(libvulkan_la_CFLAGS)
108 libvulkan_test_la_CXXFLAGS = $(libvulkan_la_CXXFLAGS)
109 libvulkan_test_la_LIBADD = $(libvulkan_la_LIBADD)
110
111 include $(top_srcdir)/install-lib-links.mk