mesa: use a prefix for the program lex
[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 = x86 x86-64 . libdricore drivers
23
24 gldir = $(includedir)/GL
25 gl_HEADERS = $(top_srcdir)/include/GL/*.h
26
27 .PHONY: main/git_sha1.h.tmp
28 main/git_sha1.h.tmp:
29 @touch main/git_sha1.h.tmp
30 @if test -d ../../.git; then \
31 if which git > /dev/null; then \
32 git log -n 1 --oneline | \
33 sed 's/^\([^ ]*\) .*/#define MESA_GIT_SHA1 "git-\1"/' \
34 > main/git_sha1.h.tmp ; \
35 fi \
36 fi
37
38 main/git_sha1.h: main/git_sha1.h.tmp
39 @echo "updating main/git_sha1.h"
40 @if ! cmp -s main/git_sha1.h.tmp main/git_sha1.h; then \
41 mv main/git_sha1.h.tmp main/git_sha1.h ;\
42 else \
43 rm main/git_sha1.h.tmp ;\
44 fi
45
46 # include glapi_gen.mk for generating glapi headers for GLES
47 GLAPI = $(top_srcdir)/src/mapi/glapi/gen
48 include $(GLAPI)/glapi_gen.mk
49
50 BUILT_SOURCES = \
51 main/git_sha1.h \
52 main/api_exec_es1_dispatch.h \
53 main/api_exec_es1_remap_helper.h \
54 main/api_exec_es1.c \
55 program/program_parse.tab.c \
56 program/program_parse.tab.h \
57 program/lex.yy.c
58 CLEANFILES = \
59 $(BUILT_SOURCES) \
60 git_sha1.h.tmp
61
62 main/api_exec_es1_dispatch.h: $(GLAPI)/gl_and_es_API.xml $(glapi_gen_dispatch_deps)
63 $(call glapi_gen_dispatch,$<,es1)
64
65 main/api_exec_es1_remap_helper.h: $(GLAPI)/gl_and_es_API.xml $(glapi_gen_remap_deps)
66 $(call glapi_gen_remap,$<,es1)
67
68 main/api_exec_es1.o: main/api_exec_es1_dispatch.h main/api_exec_es1_remap_helper.h
69
70 main/api_exec_es1.c: main/APIspec.xml main/es_generator.py main/APIspecutil.py main/APIspec.py
71 $(AM_V_GEN) $(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/main/es_generator.py \
72 -S $(srcdir)/main/APIspec.xml -V GLES1.1 > $@
73
74 program/program_parse.tab.c program/program_parse.tab.h: program/program_parse.y
75 $(MKDIR_P) program
76 $(AM_V_GEN) $(YACC) -p "_mesa_program_" -v -d --output=program/program_parse.tab.c $<
77
78 program/lex.yy.c: program/program_lexer.l
79 $(MKDIR_P) program
80 $(AM_V_GEN) $(LEX) --never-interactive --outfile=$@ $<
81
82 noinst_LTLIBRARIES =
83 if NEED_LIBMESA
84 noinst_LTLIBRARIES += libmesa.la
85 else
86 check_LTLIBRARIES = libmesa.la
87 endif
88 if HAVE_GALLIUM
89 noinst_LTLIBRARIES += libmesagallium.la
90 endif
91
92 SRCDIR = $(top_srcdir)/src/mesa/
93 BUILDDIR = $(top_builddir)/src/mesa/
94 include sources.mak
95
96 AM_CPPFLAGS = $(API_DEFINES) $(DEFINES) $(INCLUDE_DIRS)
97 AM_CFLAGS = $(LLVM_CFLAGS)
98 AM_CXXFLAGS = $(LLVM_CFLAGS)
99
100 # cannot just add $(MESA_ASM_FILES) to libmesa_la_SOURCES as it contains a configure substitution
101 MESA_ASM_FILES_FOR_ARCH =
102
103 if HAVE_X86_ASM
104 MESA_ASM_FILES_FOR_ARCH += $(X86_FILES)
105 AM_CPPFLAGS += \
106 -I$(top_builddir)/src/mesa/x86 \
107 -I$(top_srcdir)/src/mesa/x86
108 endif
109 if HAVE_X86_64_ASM
110 MESA_ASM_FILES_FOR_ARCH += $(X86_64_FILES)
111 AM_CPPFLAGS += \
112 -I$(top_builddir)/src/mesa/x86-64 \
113 -I$(top_srcdir)/src/mesa/x86-64
114 endif
115 if HAVE_SPARC_ASM
116 MESA_ASM_FILES_FOR_ARCH += $(SPARC_FILES)
117 AM_CPPFLAGS += \
118 -I$(top_builddir)/src/mesa/sparc \
119 -I$(top_srcdir)/src/mesa/sparc
120 endif
121
122 libmesa_la_SOURCES = \
123 $(MESA_FILES) \
124 $(MESA_CXX_FILES) \
125 $(MESA_ASM_FILES_FOR_ARCH)
126
127 libmesa_la_LIBADD = $(top_builddir)/src/glsl/libglsl.la
128 libmesa_la_LDFLAGS =
129
130 libmesagallium_la_SOURCES = \
131 $(MESA_GALLIUM_FILES) \
132 $(MESA_GALLIUM_CXX_FILES) \
133 $(MESA_ASM_FILES_FOR_ARCH)
134
135 libmesagallium_la_LIBADD = $(top_builddir)/src/glsl/libglsl.la
136 libmesagallium_la_LDFLAGS =
137
138 if HAVE_GALLIUM
139 # Provide compatibility with scripts for the old Mesa build system for
140 # a while by putting a link to the library in the current directory.
141 all-local: $(noinst_LTLIBRARIES)
142 ln -f .libs/libmesagallium.a .
143 endif
144
145 CLEANFILES += libmesagallium.a
146
147 pkgconfigdir = $(libdir)/pkgconfig
148 pkgconfig_DATA = gl.pc
149
150 # Emacs tags
151 tags:
152 etags `find . -name \*.[ch]` $(TOP)/include/GL/*.h