Makefile.am revision 77a3efc6b907943903190b385fdf107c4acfcdca
1# Copyright © 2012 Jon TURNEY
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
23# builtin_compiler is built before libglsl to generate builtin_function.cpp for libglsl.
24# For this to work, a dummy version of builtin_function.cpp, builtin_stubs.cpp, is used.
25
26AM_CFLAGS = \
27	-I$(top_srcdir)/include \
28	-I$(top_srcdir)/src/mapi \
29	-I$(top_srcdir)/src/mesa/ \
30	$(LIBRARY_INCLUDES) \
31	$(DEFINES) \
32	$(LIBRARY_DEFINES) \
33	$(API_DEFINES)
34
35AM_CXXFLAGS = $(AM_CFLAGS)
36
37AM_LFLAGS = --nounistd -o$(LEX_OUTPUT_ROOT).c
38
39include Makefile.sources
40
41noinst_LTLIBRARIES = libglslcommon.la libglsl.la
42noinst_PROGRAMS = glsl_compiler glsl_test builtin_compiler
43
44# common sources for builtin_compiler and libglsl
45libglslcommon_la_SOURCES = \
46	glsl_lexer.ll \
47	glsl_parser.cc \
48	$(LIBGLSL_FILES) \
49	$(LIBGLSL_CXX_FILES)
50
51libglslcommon_la_LIBADD = glcpp/libglcpp.la
52
53# common sources for builtin_compiler and glsl_compiler
54GLSL2_SOURCES = \
55	$(top_srcdir)/src/mesa/program/hash_table.c \
56	$(top_srcdir)/src/mesa/program/symbol_table.c \
57	$(GLSL_COMPILER_CXX_FILES)
58
59libglsl_la_SOURCES = \
60	builtin_function.cpp
61
62libglsl_la_LIBADD = libglslcommon.la
63libglsl_la_LDFLAGS =
64
65glsl_compiler_SOURCES = \
66	$(GLSL2_SOURCES)
67
68glsl_compiler_LDADD = libglsl.la
69
70glsl_test_SOURCES = \
71	$(top_srcdir)/src/mesa/program/hash_table.c \
72	$(top_srcdir)/src/mesa/program/symbol_table.c \
73	$(GLSL_SRCDIR)/standalone_scaffolding.cpp \
74	test.cpp \
75	test_optpass.cpp
76
77glsl_test_LDADD = libglsl.la
78
79builtin_compiler_SOURCES = \
80	$(GLSL2_SOURCES) \
81	builtin_stubs.cpp
82
83builtin_compiler_LDADD = libglslcommon.la
84
85# automake <=1.11 and automake >=1.12 have different conventions for naming C++ header files
86# made by yacc.  To work with both, we write our own rule rather than using automake's.
87# When (if) we require automake >=1.12 in configure.ac, this can be removed, and we can use
88# the automake rule.
89glsl_parser.cc glsl_parser.h: glsl_parser.yy
90	$(AM_V_GEN) $(YACC) -v -o glsl_parser.cc -p "_mesa_glsl_" --defines=glsl_parser.h $<
91
92BUILT_SOURCES = glsl_parser.h builtin_function.cpp
93CLEANFILES = glsl_lexer.cc glsl_parser.cc $(BUILT_SOURCES)
94
95builtin_function.cpp: builtins/profiles/* builtins/ir/* builtins/glsl/* builtins/tools/generate_builtins.py builtins/tools/texture_builtins.py builtin_compiler$(EXEEXT)
96	$(AM_V_GEN) $(PYTHON2) $(PYTHON_FLAGS) builtins/tools/generate_builtins.py ./builtin_compiler > builtin_function.cpp || rm -f builtin_function.cpp
97
98glcpp/libglcpp.la:
99	cd glcpp ; $(MAKE) $(AM_MAKEFLAGS)
100
101SUBDIRS = glcpp
102
103# Provide compatibility with scripts for the old Mesa build system for
104# a while by putting a link to the library in the current directory.
105all-local: libglsl.la
106	ln -f .libs/libglsl.a .
107
108CLEANFILES += libglsl.a
109