i965: Push everything if pull_param == NULL
[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_CPPFLAGS = \
27 $(AM_CPPFLAGS) \
28 -I$(top_builddir)/src/compiler/nir \
29 -I$(top_srcdir)/src/compiler/nir
30
31 nir_libnir_la_LIBADD = \
32 libcompiler.la
33
34 nir_libnir_la_SOURCES = \
35 $(NIR_FILES) \
36 $(NIR_GENERATED_FILES)
37
38 PYTHON_GEN = $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS)
39
40 nir/nir_builder_opcodes.h: nir/nir_opcodes.py nir/nir_builder_opcodes_h.py
41 $(MKDIR_GEN)
42 $(PYTHON_GEN) $(srcdir)/nir/nir_builder_opcodes_h.py > $@ || ($(RM) $@; false)
43
44 nir/nir_constant_expressions.c: nir/nir_opcodes.py nir/nir_constant_expressions.py
45 $(MKDIR_GEN)
46 $(PYTHON_GEN) $(srcdir)/nir/nir_constant_expressions.py > $@ || ($(RM) $@; false)
47
48 nir/nir_opcodes.h: nir/nir_opcodes.py nir/nir_opcodes_h.py
49 $(MKDIR_GEN)
50 $(PYTHON_GEN) $(srcdir)/nir/nir_opcodes_h.py > $@ || ($(RM) $@; false)
51
52 nir/nir_opcodes.c: nir/nir_opcodes.py nir/nir_opcodes_c.py
53 $(MKDIR_GEN)
54 $(PYTHON_GEN) $(srcdir)/nir/nir_opcodes_c.py > $@ || ($(RM) $@; false)
55
56 nir/nir_opt_algebraic.c: nir/nir_opt_algebraic.py nir/nir_algebraic.py
57 $(MKDIR_GEN)
58 $(PYTHON_GEN) $(srcdir)/nir/nir_opt_algebraic.py > $@ || ($(RM) $@; false)
59
60
61 check_PROGRAMS += nir/tests/control_flow_tests
62
63 nir_tests_control_flow_tests_CPPFLAGS = \
64 $(AM_CPPFLAGS) \
65 -I$(top_builddir)/src/compiler/nir \
66 -I$(top_srcdir)/src/compiler/nir
67
68 nir_tests_control_flow_tests_SOURCES = \
69 nir/tests/control_flow_tests.cpp
70 nir_tests_control_flow_tests_CFLAGS = \
71 $(PTHREAD_CFLAGS)
72 nir_tests_control_flow_tests_LDADD = \
73 $(top_builddir)/src/gtest/libgtest.la \
74 nir/libnir.la \
75 $(top_builddir)/src/util/libmesautil.la \
76 $(PTHREAD_LIBS)
77
78
79 TESTS += nir/tests/control_flow_tests
80
81
82 BUILT_SOURCES += $(NIR_GENERATED_FILES)
83 CLEANFILES += $(NIR_GENERATED_FILES)
84
85 EXTRA_DIST += \
86 nir/nir_algebraic.py \
87 nir/nir_builder_opcodes_h.py \
88 nir/nir_constant_expressions.py \
89 nir/nir_opcodes.py \
90 nir/nir_opcodes_c.py \
91 nir/nir_opcodes_h.py \
92 nir/nir_opt_algebraic.py \
93 nir/tests