Changeset 1ea99cc in mainline for boot/arch/ppc32/loader/Makefile
- Timestamp:
- 2009-08-20T20:47:35Z (15 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/ppc32/loader/Makefile
r24edc18 r1ea99cc 98 98 $(USPACEDIR)/app/tetris/tetris \ 99 99 $(USPACEDIR)/app/tester/tester \ 100 $(USPACEDIR)/app/dload/dload \ 101 $(USPACEDIR)/app/dltest/dltest \ 102 $(USPACEDIR)/app/dltest2/dltest2 \ 100 103 $(USPACEDIR)/app/trace/trace \ 101 104 $(USPACEDIR)/app/klog/klog \ 102 105 $(USPACEDIR)/app/bdsh/bdsh 106 107 RD_LIBS = \ 108 $(USPACEDIR)/lib/libc/shared/libc.so.0 \ 109 $(USPACEDIR)/lib/libtest/libtest.so.0 103 110 104 111 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) … … 121 128 rm -f $(USPACEDIR)/dist/srv/`basename $$file` ; \ 122 129 done 130 -for lib in $(RD_LIBS) ; do \ 131 rm -f $(USPACEDIR)/dist/lib/`basename $$lib` ; \ 132 done 123 133 -for file in $(RD_APPS) ; do \ 124 134 rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \ … … 126 136 -rm -f _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o $(OBJECTS) initrd.img image.boot Makefile.depend 127 137 128 _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o: $(COMPONENTS) $(RD_SRVS) $(RD_ APPS) _link.ld.in138 _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o: $(COMPONENTS) $(RD_SRVS) $(RD_LIBS) $(RD_APPS) _link.ld.in 129 139 for file in $(RD_SRVS) ; do \ 130 140 cp $$file $(USPACEDIR)/dist/srv/ ; \ 141 done 142 for lib in $(RD_LIBS) ; do \ 143 cp $$lib $(USPACEDIR)/dist/lib/ ; \ 131 144 done 132 145 for file in $(RD_APPS) ; do \
Note:
See TracChangeset
for help on using the changeset viewer.