Changeset 6bc4dbd in mainline for arch/ia64/boot/Makefile
- Timestamp:
- 2005-11-08T00:00:15Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5b65205
- Parents:
- 849ba5cb
- 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 7 2 8 3 build: boot.bin 9 4 cp boot.bin ../../../load.bin 10 5 11 AS=$(IA-64_BINUTILS_DIR)/$(IA-64_TARGET)-as 12 LD=$(IA-64_BINUTILS_DIR)/$(IA-64_TARGET)-ld 6 boot.bin: boot.o 7 $(LD) -EL -T _link.ld -n boot.o -o $@ 13 8 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: 9 boot.o: boot.s 21 10 $(AS) boot.s -o $@ 22 11 23 12 clean: 24 -rm *.o *.bin13 -rm -f boot.o boot.bin ../../../load.bin
Note:
See TracChangeset
for help on using the changeset viewer.