added "C++FLAGS.all" (and "OBJCFLAGS.all"); "CFLAGS.all" is still in effect
[k8jam.git] / defaults / link / Jambase.link.gdc
blob0bfae84fcdd37f8f7b61d6b015dba88f17ad750b
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 Gdc-Link {
22   MODE on $(<) = $(EXEMODE) ;
23   Chmod $(<) ;
27 actions Gdc-Link bind NEEDLIBS {
28   $(GDCLINK) $(GDCLINKFLAGS.all) $(LINKFLAGS.all) $(LINKFLAGS) -o $(<) $(UNDEFS) $(>) $(NEEDLIBS) $(GDCLINKLIBS.all) $(LINKLIBS.all) $(LINKLIBS)