Changes in boot/arch/mips32/loader/Makefile [2a18193c:1ea99cc] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/mips32/loader/Makefile
r2a18193c 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.