Changeset 6bc4dbd in mainline for arch/sparc64/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/sparc64/boot/Makefile

    r849ba5cb r6bc4dbd  
    1 BINUTILS_DIR=/usr/local/sparc64/bin
    2 TARGET=sparc64-linux-gnu
     1.PHONY: build clean
    32
    4 .PHONY: nothing build
    5 
    6 nothing:
     3CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -I../include
    74
    85build: boot.bin
    96        cp boot.bin ../../../load.bin
    107
    11 CC=$(BINUTILS_DIR)/$(TARGET)-gcc
    12 AS=$(BINUTILS_DIR)/$(TARGET)-as
    13 LD=$(BINUTILS_DIR)/$(TARGET)-ld
     8boot.bin: boot.a.out
     9        dd if=/dev/zero of=$@ bs=512 count=16
     10        dd if=boot.a.out of=$@ bs=512 seek=1 conv=notrunc
    1411
    15 CPPFLAGS=$(DEFS) -nostdinc -I../include
    16 CFLAGS=$(CPPFLAGS) -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O2
    17 LFLAGS=-no-check-sections -N -T _link.ld -s
    18 
    19 boot.bin: boot.aout
    20         dd if=/dev/zero of=$@ bs=512 count=16
    21         dd if=boot.aout of=$@ bs=512 seek=1 conv=notrunc
    22 
    23 boot.aout: boot.o
    24         $(LD) $(LFLAGS) boot.o -o $@
     12boot.a.out: boot.o
     13        $(LD) -no-check-sections -N -T _link.ld -s boot.o -o $@
    2514
    2615boot.o: boot.S
     
    2817
    2918clean:
    30         -rm *.o *.bin *.aout
     19        -rm -f boot.o boot.a.out boot.bin ../../../load.bin
Note: See TracChangeset for help on using the changeset viewer.