nir/spirv: Bring back the spirv2nir helper binary
[mesa.git] / src / compiler / Makefile.nir.am
1 #
2 # Copyright © 2012 Jon TURNEY
3 # Copyright (C) 2015 Intel Corporation
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining a
6 # copy of this software and associated documentation files (the "Software"),
7 # to deal in the Software without restriction, including without limitation
8 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
9 # and/or sell copies of the Software, and to permit persons to whom the
10 # Software is furnished to do so, subject to the following conditions:
11 #
12 # The above copyright notice and this permission notice (including the next
13 # paragraph) shall be included in all copies or substantial portions of the
14 # Software.
15 #
16 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
22 # IN THE SOFTWARE.
23
24 noinst_LTLIBRARIES += nir/libnir.la
25
26 nir_libnir_la_LIBADD = \
27 libcompiler.la
28
29 nir_libnir_la_SOURCES = \
30 $(NIR_FILES) \
31 $(SPIRV_FILES) \
32 $(NIR_GENERATED_FILES)
33
34 PYTHON_GEN = $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS)
35
36 nir/nir_builder_opcodes.h: nir/nir_opcodes.py nir/nir_builder_opcodes_h.py
37 $(MKDIR_GEN)
38 $(PYTHON_GEN) $(srcdir)/nir/nir_builder_opcodes_h.py > $@ || ($(RM) $@; false)
39
40 nir/nir_constant_expressions.c: nir/nir_opcodes.py nir/nir_constant_expressions.py
41 $(MKDIR_GEN)
42 $(PYTHON_GEN) $(srcdir)/nir/nir_constant_expressions.py > $@ || ($(RM) $@; false)
43
44 nir/nir_opcodes.h: nir/nir_opcodes.py nir/nir_opcodes_h.py
45 $(MKDIR_GEN)
46 $(PYTHON_GEN) $(srcdir)/nir/nir_opcodes_h.py > $@ || ($(RM) $@; false)
47
48 nir/nir_opcodes.c: nir/nir_opcodes.py nir/nir_opcodes_c.py
49 $(MKDIR_GEN)
50 $(PYTHON_GEN) $(srcdir)/nir/nir_opcodes_c.py > $@ || ($(RM) $@; false)
51
52 nir/nir_opt_algebraic.c: nir/nir_opt_algebraic.py nir/nir_algebraic.py
53 $(MKDIR_GEN)
54 $(PYTHON_GEN) $(srcdir)/nir/nir_opt_algebraic.py > $@ || ($(RM) $@; false)
55
56 noinst_PROGRAMS += spirv2nir
57
58 spirv2nir_SOURCES = \
59 spirv/spirv2nir.c
60
61 spirv2nir_CPPFLAGS = \
62 $(AM_CPPFLAGS) \
63 -I$(top_builddir)/src/compiler/nir \
64 -I$(top_srcdir)/src/compiler/nir \
65 -I$(top_srcdir)/src/compiler/spirv
66
67 spirv2nir_LDADD = \
68 nir/libnir.la \
69 $(top_builddir)/src/util/libmesautil.la \
70 -lm \
71 $(PTHREAD_LIBS)
72
73 nodist_EXTRA_spirv2nir_SOURCES = dummy.cpp
74
75 check_PROGRAMS += nir/tests/control_flow_tests
76
77 nir_tests_control_flow_tests_CPPFLAGS = \
78 $(AM_CPPFLAGS) \
79 -I$(top_builddir)/src/compiler/nir \
80 -I$(top_srcdir)/src/compiler/nir
81
82 nir_tests_control_flow_tests_SOURCES = \
83 nir/tests/control_flow_tests.cpp
84 nir_tests_control_flow_tests_CFLAGS = \
85 $(PTHREAD_CFLAGS)
86 nir_tests_control_flow_tests_LDADD = \
87 $(top_builddir)/src/gtest/libgtest.la \
88 nir/libnir.la \
89 $(top_builddir)/src/util/libmesautil.la \
90 $(PTHREAD_LIBS)
91
92
93 TESTS += nir/tests/control_flow_tests
94
95
96 BUILT_SOURCES += $(NIR_GENERATED_FILES)
97 CLEANFILES += $(NIR_GENERATED_FILES)
98
99 EXTRA_DIST += \
100 nir/nir_algebraic.py \
101 nir/nir_builder_opcodes_h.py \
102 nir/nir_constant_expressions.py \
103 nir/nir_opcodes.py \
104 nir/nir_opcodes_c.py \
105 nir/nir_opcodes_h.py \
106 nir/nir_opt_algebraic.py \
107 nir/tests \
108 SConscript.nir