Changeset ff12a3c in mainline for arch/sparc64/boot/Makefile
- Timestamp:
- 2005-12-18T13:28:50Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 031e264
- Parents:
- 2cf87e50
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/sparc64/boot/Makefile
r2cf87e50 rff12a3c 1 1 .PHONY: build clean 2 2 3 CFLAGS = -nostdinc -nostdlib -fno-builtin -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -I../include 4 5 build: boot.bin 6 cp boot.bin ../../../load.bin 7 8 boot.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 11 12 boot.a.out: boot.o 13 $(LD) -no-check-sections -N -T _link.ld -s boot.o -o $@ 14 15 boot.o: boot.S 16 $(CC) $(CFLAGS) -c boot.S -o $@ 3 build: 17 4 18 5 clean: 19 -rm -f boot.o boot.a.out boot.bin ../../../load.bin 6
Note:
See TracChangeset
for help on using the changeset viewer.