added "C++FLAGS.all" (and "OBJCFLAGS.all"); "CFLAGS.all" is still in effect
[k8jam.git] / defaults / link / Jambase.link.c
blob8c7dd8be16577876ce6e41ade41e9c51b2045c79
1 # This program is free software: you can redistribute it and/or modify
2 # it under the terms of the GNU General Public License as published by
3 # the Free Software Foundation, version 3 of the License ONLY.
5 # This program is distributed in the hope that it will be useful,
6 # but WITHOUT ANY WARRANTY; without even the implied warranty of
7 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
8 # GNU General Public License for more details.
10 # You should have received a copy of the GNU General Public License
11 # along with this program. If not, see <http://www.gnu.org/licenses/>.
13 # /Link image : objects ;
15 # Links _image_ from _objects_ and sets permissions on _image_ to
16 # $(EXEMODE). _image_ must be an actual filename; suffix is not
17 # supplied.
19 # Called by @Main, shouldn't be called by most people
21 rule Link {
22 MODE on $(<) = $(EXEMODE) ;
23 Chmod $(<) ;
27 # /LinkFlagsOn mains : flags ;
29 # this rule is used to add compiler flags to the compilation of
30 # specific C sources files.
32 rule LinkFlagsOn {
33 LINKFLAGS on [ FGristFiles $(<) ] += $(>) ;
37 actions Link bind NEEDLIBS {
38 $(LINK) $(LINKFLAGS.all) $(LINKFLAGS) -o $(<) $(UNDEFS) $(>) $(NEEDLIBS) $(LINKLIBS.all) $(LINKLIBS)