freedreno/ir3: find # of samplers from uniform vars
[mesa.git] / src / freedreno / Makefile.am
1 # Copyright © 2016 Broadcom
2 # Copyright © 2016 Intel Corporation
3 #
4 # Permission is hereby granted, free of charge, to any person obtaining a
5 # copy of this software and associated documentation files (the "Software"),
6 # to deal in the Software without restriction, including without limitation
7 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 # and/or sell copies of the Software, and to permit persons to whom the
9 # Software is furnished to do so, subject to the following conditions:
10 #
11 # The above copyright notice and this permission notice (including the next
12 # paragraph) shall be included in all copies or substantial portions of the
13 # Software.
14 #
15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 # IN THE SOFTWARE.
22
23 AM_CPPFLAGS = \
24 -I$(top_srcdir)/include \
25 -I$(top_builddir)/src \
26 -I$(top_srcdir)/src \
27 -I$(top_srcdir)/src/freedreno/ \
28 -I$(top_srcdir)/src/gallium/auxiliary \
29 -I$(top_srcdir)/src/gallium/include \
30 $(DEFINES)
31
32 AM_CFLAGS = \
33 $(EXPAT_CFLAGS)
34
35 include Makefile.sources
36
37 lib_LTLIBRARIES =
38 check_LTLIBRARIES =
39 noinst_DATA =
40 noinst_HEADERS = $(registers_FILES)
41 noinst_LTLIBRARIES =
42 noinst_PROGRAMS =
43 check_PROGRAMS =
44 TESTS =
45 BUILT_SOURCES =
46 CLEANFILES =
47 EXTRA_DIST = \
48 meson.build \
49 drm/meson.build \
50 ir3/ir3_nir_trig.py \
51 ir3/meson.build
52
53 MKDIR_GEN = $(AM_V_at)$(MKDIR_P) $(@D)
54 PYTHON_GEN = $(AM_V_GEN)$(PYTHON) $(PYTHON_FLAGS)
55
56 CLEANFILES += $(BUILT_SOURCES)
57
58 noinst_LTLIBRARIES += libfreedreno_drm.la
59
60 libfreedreno_drm_la_SOURCES = $(drm_SOURCES)
61 libfreedreno_drm_la_CFLAGS = $(VALGRIND_CFLAGS) $(LIBDRM_CFLAGS)
62
63 noinst_LTLIBRARIES += libfreedreno_ir3.la
64
65 libfreedreno_ir3_la_SOURCES = $(ir3_SOURCES) $(ir3_GENERATED_FILES)
66 libfreedreno_ir3_la_CFLAGS = \
67 -I$(top_srcdir)/src/freedreno/ir3 \
68 -I$(top_builddir)/src/compiler/nir \
69 -I$(top_srcdir)/src/compiler/nir
70
71 ir3/ir3_nir_trig.c: ir3/ir3_nir_trig.py $(top_srcdir)/src/compiler/nir/nir_algebraic.py
72 $(MKDIR_GEN)
73 $(AM_V_GEN) $(PYTHON) $(PYTHON_FLAGS) $(srcdir)/ir3/ir3_nir_trig.py -p $(top_srcdir)/src/compiler/nir > $@ || ($(RM) $@; false)
74