Changeset 510bc07 in mainline for kernel/Makefile


Ignore:
Timestamp:
2010-06-13T10:28:35Z (14 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
202dde5, 5f1fffb
Parents:
1d6c497
Message:

Fix ordering of [AL]FLAGS initialization and arch Makefile.inc inclusion.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/Makefile

    r1d6c497 r510bc07  
    122122endif
    123123
     124#
     125# Mind the mutual ordering with the inclusion of the arch Makefile.inc.
     126# AFLAGS and LFLAGS must be initialized before the inclusion.
     127#
     128AFLAGS =
     129LFLAGS = -N -T $(LINK) -M
     130
     131#
     132# Mind the mutual ordering with the initialization of AFLAGS and LFLAGS.
     133# The arch Makefile.inc must be included after the initialization.
     134#
    124135-include arch/$(KARCH)/Makefile.inc
    125136-include genarch/Makefile.inc
     
    172183endif
    173184
    174 AFLAGS =
    175 LFLAGS = -N -T $(LINK) -M
    176185
    177186## Generic kernel sources
Note: See TracChangeset for help on using the changeset viewer.