i965: gen4_blorp_exec.h to the sources list
[mesa.git] / src / mesa / drivers / dri / i965 / Makefile.am
1
2
3 # Copyright © 2011 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 include Makefile.sources
25
26 AM_CFLAGS = \
27 -I$(top_srcdir)/include \
28 -I$(top_srcdir)/src/ \
29 -I$(top_srcdir)/src/mapi \
30 -I$(top_srcdir)/src/mesa/ \
31 -I$(top_srcdir)/src/gallium/include \
32 -I$(top_srcdir)/src/gallium/auxiliary \
33 -I$(top_builddir)/src/mesa/drivers/dri/common \
34 -I$(top_srcdir)/src/mesa/drivers/dri/common \
35 -I$(top_srcdir)/src/gtest/include \
36 -I$(top_builddir)/src/compiler/glsl \
37 -I$(top_builddir)/src/compiler/nir \
38 -I$(top_srcdir)/src/compiler/nir \
39 -I$(top_builddir)/src/intel \
40 -I$(top_srcdir)/src/intel \
41 $(DEFINES) \
42 $(VISIBILITY_CFLAGS) \
43 $(LIBDRM_CFLAGS) \
44 $(VALGRIND_CFLAGS)
45
46 AM_CXXFLAGS = $(AM_CFLAGS)
47
48 I965_PERGEN_LIBS = \
49 libi965_gen4.la \
50 libi965_gen45.la \
51 libi965_gen5.la \
52 libi965_gen6.la \
53 libi965_gen7.la \
54 libi965_gen75.la \
55 libi965_gen8.la \
56 libi965_gen9.la \
57 libi965_gen10.la
58
59 libi965_gen4_la_SOURCES = $(i965_gen4_FILES)
60 libi965_gen4_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=40
61
62 libi965_gen45_la_SOURCES = $(i965_gen45_FILES)
63 libi965_gen45_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=45
64
65 libi965_gen5_la_SOURCES = $(i965_gen5_FILES)
66 libi965_gen5_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=50
67
68 libi965_gen6_la_SOURCES = $(i965_gen6_FILES)
69 libi965_gen6_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=60
70
71 libi965_gen7_la_SOURCES = $(i965_gen7_FILES)
72 libi965_gen7_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=70
73
74 libi965_gen75_la_SOURCES = $(i965_gen75_FILES)
75 libi965_gen75_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=75
76
77 libi965_gen8_la_SOURCES = $(i965_gen8_FILES)
78 libi965_gen8_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=80
79
80 libi965_gen9_la_SOURCES = $(i965_gen9_FILES)
81 libi965_gen9_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=90
82
83 libi965_gen10_la_SOURCES = $(i965_gen10_FILES)
84 libi965_gen10_la_CFLAGS = $(AM_CFLAGS) -DGEN_VERSIONx10=100
85
86 noinst_LTLIBRARIES = \
87 libi965_dri.la \
88 $(I965_PERGEN_LIBS)
89
90 libi965_dri_la_SOURCES = \
91 $(i965_FILES) \
92 $(i965_oa_GENERATED_FILES)
93 libi965_dri_la_LIBADD = \
94 $(top_builddir)/src/intel/common/libintel_common.la \
95 $(top_builddir)/src/intel/isl/libisl.la \
96 $(top_builddir)/src/intel/compiler/libintel_compiler.la \
97 $(top_builddir)/src/intel/blorp/libblorp.la \
98 $(I965_PERGEN_LIBS) \
99 $(LIBDRM_LIBS)
100
101 BUILT_SOURCES = $(i965_oa_GENERATED_FILES)
102 CLEANFILES = $(BUILT_SOURCES)
103
104 EXTRA_DIST = \
105 brw_oa_hsw.xml \
106 brw_oa.py
107
108 # Note: we avoid using a multi target rule here and outputting both the
109 # .c and .h files in one go so we don't hit problems with parallel
110 # make and multiple invocations of the same script trying to write
111 # to the same files.
112 brw_oa_hsw.h: brw_oa.py brw_oa_hsw.xml
113 $(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/brw_oa.py --header=$(builddir)/brw_oa_hsw.h --chipset=hsw $(srcdir)/brw_oa_hsw.xml
114 brw_oa_hsw.c: brw_oa.py brw_oa_hsw.xml
115 $(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/brw_oa.py --code=$(builddir)/brw_oa_hsw.c --chipset=hsw $(srcdir)/brw_oa_hsw.xml