Changeset e84439a in mainline for arch/mips/boot/Makefile
- Timestamp:
- 2005-09-06T08:51:22Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e949fd6
- Parents:
- 39ae77b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/mips/boot/Makefile
r39ae77b re84439a 10 10 11 11 AS=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-as 12 CC=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-gcc 12 13 LD=$(MIPS_BINUTILS_DIR)/$(MIPS_TARGET)-ld 13 14 14 ASFLAGS=-mips2 15 ASFLAGS=-mips2 -I../../../include 15 16 LFLAGS=--oformat=binary -mips2 -e start 16 17 18 .S.o: 19 $(CC) $(ASFLAGS) -c -o $@ $< 20 17 21 boot.bin: boot.o 18 $(LD) $(LFLAGS) boot.o-o $@22 $(LD) $(LFLAGS) $< -o $@ 19 23 20 boot.o:21 $(AS) boot.s -o $@22 24 23 25 clean:
Note:
See TracChangeset
for help on using the changeset viewer.