7 # Copyright (c) 2008-2009 knut st. osmundsen <bird-kBuild-spamix@anduin.net>
9 # This file is part of kBuild.
11 # kBuild is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 2 of the License, or
14 # (at your option) any later version.
16 # kBuild is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with kBuild; if not, write to the Free Software
23 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
26 # As a special exception you are granted permission to include this file, via
27 # the kmk include directive, as you wish without this in itself causing the
28 # resulting makefile, program or whatever to be covered by the GPL license.
29 # This exception does not however invalidate any other reasons why the makefile,
30 # program, whatever should not be covered the GPL.
35 $(error kBuild
: The
yacc unit was included twice
!)
39 # Add our target properties.
40 PROPS_TOOLS
+= YACCTOOL
41 PROPS_SINGLE
+= YACCTOOL
42 PROPS_ACCUMULATE_R
+= YACCFLAGS
44 # Add ourselves to the default source handlers.
45 KBUILD_SRC_HANDLERS
+= \
46 .y
:def_src_handler_yacc_y \
47 .ypp
:def_src_handler_yacc_ypp \
48 .y
++:def_src_handler_yacc_ypp
51 ## wrapper the compile command dependency check.
52 ifndef NO_COMPILE_CMDS_DEPS
53 _DEP_YACC_CMDS
= $$(comp-cmds-ex
$$($(target
)_
$(subst :,_
,$(source
))_YACC_CMDS_PREV_
),$$(commands
$(out
)),FORCE
)
60 # Generates the rules for running flex on a specific source file.
62 # @param $(obj) The object file.
65 $(out
) + $(output_extra
) +|
$(output_maybe
) : \
67 $(value _DEP_YACC_CMDS
) \
70 %$$(call MSG_COMPILE
,$(target
),$(source
),$$@
,$(type
))
71 $$(QUIET
)$$(RM
) -f
-- $(dep
) $(out
) $(output_extra
) $(output_maybe
)
75 ifndef NO_COMPILE_CMDS_DEPS
76 %$$(QUIET2
)$$(APPEND
) '$(dep)'
77 %$$(QUIET2
)$$(APPEND
) '$(dep)' 'define $(target)_$(subst :,_,$(source))_YACC_CMDS_PREV_'
78 %$$(QUIET2
)$$(APPEND
) -c
'$(dep)' '$(out)'
79 %$$(QUIET2
)$$(APPEND
) '$(dep)' 'endef'
82 # update globals and target properties.
83 _OUT_FILES
+= $(out
) $(output_extra
) $(output_maybe
)
84 $(target
)_GEN_SOURCES_
+= $(out
)
85 $(target
)_INTERMEDIATES
+= $(intermediates
)
91 # Handler for .y files listed in the SOURCES properties.
93 # .y files are transformed into .c (and maybe .h) files that then gets
94 # compiled by the C compiler.
96 # @param target The target file.
97 # @param source The source file.
99 # @returns quite a bit.
101 define def_src_handler_yacc_y
102 # Figure out all the props.
104 local tmp
:= $(kb-src-tool tool
)
106 $(error kBuild
: $(target
) / $(sources
) does not a
(yacc) tool defined
!)
108 ifndef TOOL_
$(tool
)_YACC_CMDS
109 $(error kBuild
: TOOL_
$(tool
)_YACC_CMDS isn
't defined! target=$(target) source=$(source) )
111 local out := $(kb-obj-base outbase).c
112 local tmp := $(kb-src-prop YACCFLAGS,flags,left-to-right,)
113 local tmp := $(kb-src-prop DEPS,deps,left-to-right,$(defpath))
114 local tmp := $(kb-src-prop ORDERDEPS,orderdeps,left-to-right,$(defpath))
115 local dirdep := $(call DIRDEP,$(dir $(out)))
117 # Adjust paths if we got a default path.
119 local source := $(abspathex $(source),$(defpath))
123 local dep := $(out)$(SUFF_DEP)
124 ifndef NO_COMPILE_CMDS_DEPS
125 _DEPFILES_INCLUDED += $(dep)
126 $(eval includedep $(dep))
130 local cmds := $(TOOL_$(tool)_YACC_CMDS)
131 local output_extra := $(TOOL_$(tool)_YACC_OUTPUT)
132 local output_maybe := $(TOOL_$(tool)_YACC_OUTPUT_MAYBE)
133 local deps += $(TOOL_$(tool)_YACC_DEPEND) $(source)
134 local orderdeps += $(TOOL_$(tool)_YACC_DEPORD) $(dirdep)
136 # Whether it generates a header file depends on flags.
137 local intermediates := $(filter %.h %.hpp %.h++ %.H,$(output_extra))
140 $(eval $(def_yacc_rule))
142 endef # def_src_handler_yacc_y
146 # Handler for .ypp/.y++ files listed in the SOURCES properties.
148 # .ypp/++ files are transformed into .cpp/++ (and maybe .hpp/++) files that then gets
149 # compiled by the C++ compiler.
151 # @param target The target file.
152 # @param source The source file.
154 # @returns quite a bit.
156 define def_src_handler_yacc_ypp
157 # Figure out all the props.
159 local tmp := $(kb-src-tool tool)
161 $(error kBuild: $(target) / $(sources) does not a (yacc) tool defined!)
163 ifndef TOOL_$(tool)_YACC_CMDS
164 $(error kBuild: TOOL_$(tool)_YACC_CMDS isn't defined
! target
=$(target
) source
=$(source
) )
166 local out
:= $(kb-obj-base outbase
).c
$(substr
$(suffix $(source
),3))
167 local tmp
:= $(kb-src-prop YACCFLAGS
,flags
,left-to-right
,)
168 local tmp
:= $(kb-src-prop DEPS
,deps
,left-to-right
,$(defpath
))
169 local tmp
:= $(kb-src-prop ORDERDEPS
,orderdeps
,left-to-right
,$(defpath
))
170 local dirdep
:= $(call DIRDEP
,$(dir $(out
)))
172 # Adjust paths if we got a default path.
174 local source
:= $(abspathex
$(source
),$(defpath
))
178 local dep
:= $(out
)$(SUFF_DEP
)
179 ifndef NO_COMPILE_CMDS_DEPS
180 _DEPFILES_INCLUDED
+= $(dep
)
181 $(eval includedep
$(dep
))
185 local cmds
:= $(TOOL_
$(tool
)_YACC_CMDS
)
186 local output_extra
:= $(TOOL_
$(tool
)_YACC_OUTPUT
)
187 local output_maybe
:= $(TOOL_
$(tool
)_YACC_OUTPUT_MAYBE
)
188 local deps
+= $(TOOL_
$(tool
)_YACC_DEPEND
) $(source
)
189 local orderdeps
+= $(TOOL_
$(tool
)_YACC_DEPORD
) $(dirdep
)
191 # Whether it generates a header file depends on flags.
192 local intermediates
:= $(filter %.h
%.hpp
%.h
++ %.H
,$(output_extra
))
195 $(eval
$(def_yacc_rule
))
197 endef # def_src_handler_yacc_ypp