blob: 7ec56d4f203fa7a05ba1d2d9b049e8af5d931e04 [file] [log] [blame]
Cody Northrop0d5881e2014-09-17 14:06:55 -06001# Mesa 3-D graphics library
2#
3# Copyright (C) 2010-2011 Chia-I Wu <olvaffe@gmail.com>
4# Copyright (C) 2010-2011 LunarG Inc.
5#
6# Permission is hereby granted, free of charge, to any person obtaining a
7# copy of this software and associated documentation files (the "Software"),
8# to deal in the Software without restriction, including without limitation
9# the rights to use, copy, modify, merge, publish, distribute, sublicense,
10# and/or sell copies of the Software, and to permit persons to whom the
11# Software is furnished to do so, subject to the following conditions:
12#
13# The above copyright notice and this permission notice shall be included
14# in all copies or substantial portions of the 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
22# DEALINGS IN THE SOFTWARE.
23
24# included by glsl Android.mk for source generation
25
26ifeq ($(LOCAL_MODULE_CLASS),)
27LOCAL_MODULE_CLASS := STATIC_LIBRARIES
28endif
29
30intermediates := $(call local-intermediates-dir)
31
32sources := \
33 glsl_lexer.cpp \
34 glsl_parser.cpp \
35 glcpp/glcpp-lex.c \
36 glcpp/glcpp-parse.c
37
38LOCAL_SRC_FILES := $(filter-out $(sources), $(LOCAL_SRC_FILES))
39
40LOCAL_C_INCLUDES += $(intermediates) $(intermediates)/glcpp $(MESA_TOP)/src/glsl/glcpp
41
42sources := $(addprefix $(intermediates)/, $(sources))
43LOCAL_GENERATED_SOURCES += $(sources)
44
45define local-l-or-ll-to-c-or-cpp
46 @mkdir -p $(dir $@)
47 @echo "Mesa Lex: $(PRIVATE_MODULE) <= $<"
48 $(hide) $(LEX) --nounistd -o$@ $<
49endef
50
51define glsl_local-y-to-c-and-h
52 @mkdir -p $(dir $@)
53 @echo "Mesa Yacc: $(PRIVATE_MODULE) <= $<"
54 $(hide) $(YACC) -o $@ -p "glcpp_parser_" $<
55endef
56
57define local-yy-to-cpp-and-h
58 @mkdir -p $(dir $@)
59 @echo "Mesa Yacc: $(PRIVATE_MODULE) <= $<"
60 $(hide) $(YACC) -p "_mesa_glsl_" -o $@ $<
61 touch $(@:$1=$(YACC_HEADER_SUFFIX))
62 echo '#ifndef '$(@F:$1=_h) > $(@:$1=.h)
63 echo '#define '$(@F:$1=_h) >> $(@:$1=.h)
64 cat $(@:$1=$(YACC_HEADER_SUFFIX)) >> $(@:$1=.h)
65 echo '#endif' >> $(@:$1=.h)
66 rm -f $(@:$1=$(YACC_HEADER_SUFFIX))
67endef
68
69$(intermediates)/glsl_lexer.cpp: $(LOCAL_PATH)/glsl_lexer.ll
70 $(call local-l-or-ll-to-c-or-cpp)
71
72$(intermediates)/glsl_parser.cpp: $(LOCAL_PATH)/glsl_parser.yy
73 $(call local-yy-to-cpp-and-h,.cpp)
74
75$(intermediates)/glcpp/glcpp-lex.c: $(LOCAL_PATH)/glcpp/glcpp-lex.l
76 $(call local-l-or-ll-to-c-or-cpp)
77
78$(intermediates)/glcpp/glcpp-parse.c: $(LOCAL_PATH)/glcpp/glcpp-parse.y
79 $(call glsl_local-y-to-c-and-h)