Changeset 6bc4dbd in mainline for arch/ia64/boot/Makefile


Ignore:
Timestamp:
2005-11-08T00:00:15Z (19 years ago)
Author:
Martin Decky <martin@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
5b65205
Parents:
849ba5cb
Message:

new build system upgrade
finished work for IA-32, IA-64, PPC-32, SPARC-64

File:
1 edited

Legend:

Unmodified
Added
Removed
  • arch/ia64/boot/Makefile

    r849ba5cb r6bc4dbd  
    1 IA-64_BINUTILS_DIR=/usr/local/ia64/bin
    2 IA-64_TARGET=ia64-pc-linux-gnu
    3 
    4 .PHONY: nothing build
    5 
    6 nothing:
     1.PHONY: build clean
    72
    83build: boot.bin
    94        cp boot.bin ../../../load.bin
    105
    11 AS=$(IA-64_BINUTILS_DIR)/$(IA-64_TARGET)-as
    12 LD=$(IA-64_BINUTILS_DIR)/$(IA-64_TARGET)-ld
     6boot.bin: boot.o
     7        $(LD) -EL -T _link.ld -n boot.o -o $@
    138
    14 ASFLAGS=-EL
    15 LFLAGS=-EL -T _link.ld -n
    16 
    17 boot.bin: boot.o
    18         $(LD) $(LFLAGS) boot.o -o $@
    19 
    20 boot.o:
     9boot.o: boot.s
    2110        $(AS) boot.s -o $@
    2211
    2312clean:
    24         -rm *.o *.bin
     13        -rm -f boot.o boot.bin ../../../load.bin
Note: See TracChangeset for help on using the changeset viewer.