9710c7f0941aaf649f712edde3daebcc35412c15
[mesa.git] / src / mesa / Makefile.am
1 # Copyright © 2012 Intel Corporation
2 #
3 # Permission is hereby granted, free of charge, to any person obtaining a
4 # copy of this software and associated documentation files (the "Software"),
5 # to deal in the Software without restriction, including without limitation
6 # the rights to use, copy, modify, merge, publish, distribute, sublicense,
7 # and/or sell copies of the Software, and to permit persons to whom the
8 # Software is furnished to do so, subject to the following conditions:
9 #
10 # The above copyright notice and this permission notice (including the next
11 # paragraph) shall be included in all copies or substantial portions of the
12 # Software.
13 #
14 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 # THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
20 # IN THE SOFTWARE.
21
22 SUBDIRS = . main/tests
23
24 if HAVE_XLIB_GLX
25 SUBDIRS += drivers/x11
26 endif
27
28 if HAVE_DRICOMMON
29 SUBDIRS += drivers/dri
30 endif
31
32 if HAVE_OSMESA
33 SUBDIRS += drivers/osmesa
34 endif
35
36 include Makefile.sources
37
38 EXTRA_DIST = \
39 drivers/SConscript \
40 main/format_info.py \
41 main/format_pack.py \
42 main/format_parser.py \
43 main/format_unpack.py \
44 main/formats.csv \
45 main/get_hash_generator.py \
46 main/get_hash_params.py \
47 program/program_lexer.l \
48 program/program_parse.y \
49 SConscript \
50 swrast/NOTES \
51 swrast_setup/NOTES \
52 tnl/NOTES \
53 tnl_dd
54
55 BUILT_SOURCES = \
56 main/get_hash.h \
57 main/format_info.h \
58 main/format_pack.c \
59 main/format_unpack.c \
60 program/program_parse.tab.c \
61 program/lex.yy.c
62 CLEANFILES = \
63 $(BUILT_SOURCES) \
64 program/program_parse.tab.h
65
66 PYTHON_GEN = $(AM_V_GEN)$(PYTHON2) $(PYTHON_FLAGS)
67
68 main/get_hash.h: ../mapi/glapi/gen/gl_and_es_API.xml main/get_hash_params.py \
69 main/get_hash_generator.py
70 $(PYTHON_GEN) $(srcdir)/main/get_hash_generator.py \
71 -f $(srcdir)/../mapi/glapi/gen/gl_and_es_API.xml > $@
72
73 main/format_info.h: main/formats.csv \
74 main/format_parser.py main/format_info.py
75 $(PYTHON_GEN) $(srcdir)/main/format_info.py $(srcdir)/main/formats.csv > $@
76
77 main/format_pack.c: main/format_pack.py main/formats.csv \
78 main/format_parser.py
79 $(PYTHON_GEN) $(srcdir)/main/format_pack.py $(srcdir)/main/formats.csv > $@
80
81 main/format_unpack.c: main/format_unpack.py main/formats.csv \
82 main/format_parser.py
83 $(PYTHON_GEN) $(srcdir)/main/format_unpack.py $(srcdir)/main/formats.csv > $@
84
85 main/formats.c: main/format_info.h
86
87 noinst_LTLIBRARIES = $(ARCH_LIBS)
88 if NEED_LIBMESA
89 noinst_LTLIBRARIES += libmesa.la
90 else
91 check_LTLIBRARIES = libmesa.la
92 endif
93 if HAVE_GALLIUM
94 noinst_LTLIBRARIES += libmesagallium.la
95 endif
96
97 AM_CPPFLAGS = $(DEFINES) $(INCLUDE_DIRS)
98 AM_CFLAGS = \
99 $(LLVM_CFLAGS) \
100 $(VISIBILITY_CFLAGS) \
101 $(MSVC2013_COMPAT_CFLAGS)
102 AM_CXXFLAGS = \
103 $(LLVM_CFLAGS) \
104 $(VISIBILITY_CXXFLAGS) \
105 $(MSVC2013_COMPAT_CXXFLAGS)
106
107 ARCH_LIBS =
108
109 if SSE41_SUPPORTED
110 ARCH_LIBS += libmesa_sse41.la
111 endif
112
113 MESA_ASM_FILES_FOR_ARCH =
114
115 if HAVE_X86_ASM
116 noinst_PROGRAMS = gen_matypes
117
118 gen_matypes_SOURCES = x86/gen_matypes.c
119 BUILT_SOURCES += matypes.h
120
121 if HAVE_X86_64_ASM
122 MESA_ASM_FILES_FOR_ARCH += $(X86_64_FILES)
123 AM_CPPFLAGS += -I$(builddir)/x86-64 -I$(srcdir)/x86-64
124 else
125 MESA_ASM_FILES_FOR_ARCH += $(X86_FILES)
126 AM_CPPFLAGS += -I$(builddir)/x86 -I$(srcdir)/x86
127 endif
128 endif
129 if HAVE_SPARC_ASM
130 MESA_ASM_FILES_FOR_ARCH += $(SPARC_FILES)
131 AM_CPPFLAGS += -I$(builddir)/sparc -I$(srcdir)/sparc
132 endif
133
134 libmesa_la_SOURCES = \
135 $(MESA_FILES) \
136 $(PROGRAM_FILES) \
137 $(PROGRAM_NIR_FILES) \
138 $(MESA_ASM_FILES_FOR_ARCH)
139
140 libmesa_la_LIBADD = \
141 $(top_builddir)/src/compiler/glsl/libglsl.la \
142 $(ARCH_LIBS)
143
144 libmesagallium_la_SOURCES = \
145 $(MESA_GALLIUM_FILES) \
146 $(PROGRAM_FILES) \
147 $(PROGRAM_NIR_FILES) \
148 $(MESA_ASM_FILES_FOR_ARCH)
149
150 libmesagallium_la_LIBADD = \
151 $(top_builddir)/src/compiler/glsl/libglsl.la \
152 $(ARCH_LIBS)
153
154 libmesa_sse41_la_SOURCES = \
155 $(X86_SSE41_FILES)
156
157 libmesa_sse41_la_CFLAGS = $(AM_CFLAGS) $(SSE41_CFLAGS)
158
159 MKDIR_GEN = $(AM_V_at)$(MKDIR_P) $(@D)
160 YACC_GEN = $(AM_V_GEN)$(YACC) $(YFLAGS)
161 LEX_GEN = $(AM_V_GEN)$(LEX) $(LFLAGS)
162
163 program/lex.yy.c: program/program_lexer.l
164 $(MKDIR_GEN)
165 $(LEX_GEN) -o $@ $(srcdir)/program/program_lexer.l
166
167 program/program_parse.tab.c program/program_parse.tab.h: program/program_parse.y
168 $(MKDIR_GEN)
169 $(YACC_GEN) -o $@ -p "_mesa_program_" --defines=$(builddir)/program/program_parse.tab.h $(srcdir)/program/program_parse.y
170
171 if GEN_ASM_OFFSETS
172 matypes.h: $(gen_matypes_SOURCES)
173 $(AM_V_GEN)$(COMPILE) $< -DASM_OFFSETS -S -o - | \
174 sed -n '/^->/{s:^->::;/[$$]/{s:^:#define :;s:[$$]::};p}' > $@
175 else
176 matypes.h: gen_matypes
177 $(AM_V_GEN)./gen_matypes > $@
178 endif
179
180 # Emacs tags
181 tags:
182 etags `find . -name \*.[ch]` $(top_srcdir)/include/GL/*.h