Changeset e84439a in mainline for arch/mips/boot/Makefile


Ignore:
Timestamp:
2005-09-06T08:51:22Z (20 years ago)
Author:
Ondrej Palkovsky <ondrap@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e949fd6
Parents:
39ae77b
Message:

Fixed mips boot process.
On interrupt saving registers, save $lo, $hi.
Add interrupt naming to asm files (mips).
Save only necessary registers on context switch (see mips ABI).
Fixed copyright info.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/mips/boot/Makefile

    r39ae77b re84439a  
    1010
    1111AS=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-as
     12CC=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-gcc
    1213LD=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-ld
    1314
    14 ASFLAGS=-mips2
     15ASFLAGS=-mips2 -I../../../include
    1516LFLAGS=--oformat=binary -mips2 -e start
    1617
     18.S.o:
     19        $(CC) $(ASFLAGS) -c -o $@ $<
     20
    1721boot.bin: boot.o
    18         $(LD) $(LFLAGS) boot.o -o $@
     22        $(LD) $(LFLAGS) $< -o $@
    1923
    20 boot.o:
    21         $(AS) boot.s -o $@
    2224
    2325clean:
Note: See TracChangeset for help on using the changeset viewer.