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 26 AM_CPPFLAGS = \ 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 AM_CFLAGS = $(VISIBILITY_CFLAGS) 35 AM_CXXFLAGS = $(VISIBILITY_CXXFLAGS) 36 37 AM_LFLAGS = --nounistd -o$(LEX_OUTPUT_ROOT).c 38 39 include Makefile.sources 40 41 noinst_LTLIBRARIES = libglslcommon.la libglsl.la 42 noinst_PROGRAMS = glsl_compiler glsl_test builtin_compiler 43 44 # common sources for builtin_compiler and libglsl 45 libglslcommon_la_SOURCES = \ 46 glsl_lexer.ll \ 47 glsl_parser.cc \ 48 $(LIBGLSL_FILES) \ 49 $(LIBGLSL_CXX_FILES) 50 51 libglslcommon_la_LIBADD = glcpp/libglcpp.la 52 53 # common sources for builtin_compiler and glsl_compiler 54 GLSL2_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 59 libglsl_la_SOURCES = \ 60 builtin_function.cpp 61 62 libglsl_la_LIBADD = libglslcommon.la 63 libglsl_la_LDFLAGS = 64 65 glsl_compiler_SOURCES = \ 66 $(GLSL2_SOURCES) 67 68 glsl_compiler_LDADD = libglsl.la 69 70 glsl_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 77 glsl_test_LDADD = libglsl.la 78 79 builtin_compiler_SOURCES = \ 80 $(GLSL2_SOURCES) \ 81 builtin_stubs.cpp 82 83 builtin_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. 89 glsl_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 92 BUILT_SOURCES = glsl_parser.h builtin_function.cpp 93 CLEANFILES = glsl_lexer.cc glsl_parser.cc $(BUILT_SOURCES) 94 95 builtin_function.cpp: $(srcdir)/builtins/profiles/* $(srcdir)/builtins/ir/* $(srcdir)/builtins/glsl/* $(srcdir)/builtins/tools/generate_builtins.py $(srcdir)/builtins/tools/texture_builtins.py builtin_compiler$(EXEEXT) 96 $(AM_V_GEN) $(PYTHON2) $(PYTHON_FLAGS) $(srcdir)/builtins/tools/generate_builtins.py ./builtin_compiler > builtin_function.cpp || rm -f builtin_function.cpp 97 98 glcpp/libglcpp.la: 99 cd glcpp ; $(MAKE) $(AM_MAKEFLAGS) 100 101 SUBDIRS = 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. 105 all-local: libglsl.la 106 ln -f .libs/libglsl.a . 107 108 CLEANFILES += libglsl.a 109