Changeset e19d667 in mainline for boot/arch/mips32/loader/Makefile
- Timestamp:
- 2008-05-29T15:26:41Z (17 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 136edca
- Parents:
- 33c058d3
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/mips32/loader/Makefile
r33c058d3 re19d667 33 33 # 34 34 35 ifeq ($(IMAGE),binary) 36 BFD = binary 37 endif 38 ifeq ($(IMAGE),ecoff) 39 BFD = ecoff-littlemips 40 endif 41 BFD_NAME = elf32-tradlittlemips 42 BFD_ARCH = mips 35 43 TARGET = mipsel-linux-gnu 36 44 TOOLCHAIN_DIR = /usr/local/mipsel/bin … … 73 81 main.c \ 74 82 msim.c \ 83 _components.c \ 75 84 ../../../generic/printf.c \ 76 85 asm.S \ … … 108 117 109 118 clean: 110 -rm -f _components.h _ link.ld $(COMPONENT_OBJECTS) $(OBJECTS) image.boot Makefile.depend119 -rm -f _components.h _components.c _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) image.boot Makefile.depend 111 120 112 _components.h _ link.ld $(COMPONENT_OBJECTS): $(COMPONENTS)113 . /pack $(IMAGE) $(OBJCOPY)$(COMPONENTS)121 _components.h _components.c _link.ld $(COMPONENT_OBJECTS): $(COMPONENTS) 122 ../../../tools/pack.py $(OBJCOPY) $(BFD_NAME) $(BFD) $(BFD_ARCH) 4096 $(COMPONENTS) 114 123 115 124 %.o: %.S
Note:
See TracChangeset
for help on using the changeset viewer.