Changeset 1ea99cc in mainline for boot/arch/mips32/loader/Makefile
- Timestamp:
- 2009-08-20T20:47:35Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b50b5af2
- Parents:
- 24edc18
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/mips32/loader/Makefile
r24edc18 r1ea99cc 112 112 $(USPACEDIR)/app/tetris/tetris \ 113 113 $(USPACEDIR)/app/tester/tester \ 114 $(USPACEDIR)/app/dload/dload \ 115 $(USPACEDIR)/app/dltest/dltest \ 116 $(USPACEDIR)/app/dltest2/dltest2 \ 114 117 $(USPACEDIR)/app/trace/trace \ 115 118 $(USPACEDIR)/app/bdsh/bdsh \ 116 119 $(USPACEDIR)/app/klog/klog 120 121 RD_LIBS = \ 122 $(USPACEDIR)/lib/libc/shared/libc.so.0 \ 123 $(USPACEDIR)/lib/libtest/libtest.so.0 117 124 118 125 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) … … 143 150 -rm -f _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o $(OBJECTS) initrd.img image.raw image.boot Makefile.depend 144 151 145 _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o: $(COMPONENTS) $(RD_SRVS) $(RD_ APPS) _link.ld.in152 _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o: $(COMPONENTS) $(RD_SRVS) $(RD_LIBS) $(RD_APPS) _link.ld.in 146 153 for file in $(RD_SRVS) ; do \ 147 154 cp $$file $(USPACEDIR)/dist/srv/ ; \ 155 done 156 for lib in $(RD_LIBS) ; do \ 157 cp $$lib $(USPACEDIR)/dist/lib/ ; \ 148 158 done 149 159 for file in $(RD_APPS) ; do \
Note:
See TracChangeset
for help on using the changeset viewer.