glsl: Fix bad formatting in a comment
[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 $(SPIRV_GENERATED_FILES) \
33 $(NIR_GENERATED_FILES)
34
35 nir/nir_builder_opcodes.h: nir/nir_opcodes.py nir/nir_builder_opcodes_h.py
36 $(MKDIR_GEN)
37 $(PYTHON_GEN) $(srcdir)/nir/nir_builder_opcodes_h.py > $@ || ($(RM) $@; false)
38
39 nir/nir_constant_expressions.c: nir/nir_opcodes.py nir/nir_constant_expressions.py
40 $(MKDIR_GEN)
41 $(PYTHON_GEN) $(srcdir)/nir/nir_constant_expressions.py > $@ || ($(RM) $@; false)
42
43 nir/nir_opcodes.h: nir/nir_opcodes.py nir/nir_opcodes_h.py
44 $(MKDIR_GEN)
45 $(PYTHON_GEN) $(srcdir)/nir/nir_opcodes_h.py > $@ || ($(RM) $@; false)
46
47 nir/nir_opcodes.c: nir/nir_opcodes.py nir/nir_opcodes_c.py
48 $(MKDIR_GEN)
49 $(PYTHON_GEN) $(srcdir)/nir/nir_opcodes_c.py > $@ || ($(RM) $@; false)
50
51 nir/nir_opt_algebraic.c: nir/nir_opt_algebraic.py nir/nir_algebraic.py
52 $(MKDIR_GEN)
53 $(PYTHON_GEN) $(srcdir)/nir/nir_opt_algebraic.py > $@ || ($(RM) $@; false)
54
55 spirv/spirv_info.c: spirv/spirv_info_c.py spirv/spirv.core.grammar.json
56 $(MKDIR_GEN)
57 $(PYTHON_GEN) $(srcdir)/spirv/spirv_info_c.py $(srcdir)/spirv/spirv.core.grammar.json $@ || ($(RM) $@; false)
58
59 noinst_PROGRAMS += spirv2nir
60
61 spirv2nir_SOURCES = \
62 spirv/spirv2nir.c
63
64 spirv2nir_CPPFLAGS = \
65 $(AM_CPPFLAGS) \
66 -I$(top_builddir)/src/compiler/nir \
67 -I$(top_srcdir)/src/compiler/nir \
68 -I$(top_srcdir)/src/compiler/spirv
69
70 spirv2nir_LDADD = \
71 nir/libnir.la \
72 $(top_builddir)/src/util/libmesautil.la \
73 -lm \
74 $(PTHREAD_LIBS)
75
76 nodist_EXTRA_spirv2nir_SOURCES = dummy.cpp
77
78 check_PROGRAMS += nir/tests/control_flow_tests
79
80 nir_tests_control_flow_tests_CPPFLAGS = \
81 $(AM_CPPFLAGS) \
82 -I$(top_builddir)/src/compiler/nir \
83 -I$(top_srcdir)/src/compiler/nir
84
85 nir_tests_control_flow_tests_SOURCES = \
86 nir/tests/control_flow_tests.cpp
87 nir_tests_control_flow_tests_CFLAGS = \
88 $(PTHREAD_CFLAGS)
89 nir_tests_control_flow_tests_LDADD = \
90 $(top_builddir)/src/gtest/libgtest.la \
91 nir/libnir.la \
92 $(top_builddir)/src/util/libmesautil.la \
93 $(PTHREAD_LIBS)
94
95
96 TESTS += nir/tests/control_flow_tests
97
98
99 BUILT_SOURCES += \
100 $(NIR_GENERATED_FILES) \
101 $(SPIRV_GENERATED_FILES)
102
103 CLEANFILES += \
104 $(NIR_GENERATED_FILES) \
105 $(SPIRV_GENERATED_FILES)
106
107 EXTRA_DIST += \
108 nir/nir_algebraic.py \
109 nir/nir_builder_opcodes_h.py \
110 nir/nir_constant_expressions.py \
111 nir/nir_opcodes.py \
112 nir/nir_opcodes_c.py \
113 nir/nir_opcodes_h.py \
114 nir/nir_opt_algebraic.py \
115 nir/tests \
116 nir/README \
117 spirv/spirv_info_c.py \
118 spirv/spirv.core.grammar.json \
119 SConscript.nir