Changes in boot/arch/ppc32/loader/Makefile [1ea99cc:e731b0d] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/ppc32/loader/Makefile
r1ea99cc re731b0d 62 62 SOURCES = \ 63 63 main.c \ 64 ofwarch.c \65 64 _components.c \ 66 ../../../genarch/ofw.c \67 65 ../../../generic/printf.c \ 68 66 ../../../generic/string.c \ 67 ../../../genarch/balloc.c \ 68 ../../../genarch/ofw.c \ 69 ../../../genarch/ofw_tree.c \ 70 ofwarch.c \ 69 71 asm.S \ 70 72 boot.S … … 73 75 $(KERNELDIR)/kernel.bin \ 74 76 $(USPACEDIR)/srv/ns/ns \ 77 $(USPACEDIR)/app/init/init \ 75 78 $(USPACEDIR)/srv/loader/loader \ 76 $(USPACEDIR)/app/init/init \77 79 $(USPACEDIR)/srv/devmap/devmap \ 78 80 $(USPACEDIR)/srv/bd/rd/rd \ … … 98 100 $(USPACEDIR)/app/tetris/tetris \ 99 101 $(USPACEDIR)/app/tester/tester \ 100 $(USPACEDIR)/app/dload/dload \101 $(USPACEDIR)/app/dltest/dltest \102 $(USPACEDIR)/app/dltest2/dltest2 \103 102 $(USPACEDIR)/app/trace/trace \ 104 $(USPACEDIR)/app/klog/klog \ 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 $(USPACEDIR)/app/bdsh/bdsh \ 104 $(USPACEDIR)/app/klog/klog 110 105 111 106 OBJECTS := $(addsuffix .o,$(basename $(SOURCES))) … … 128 123 rm -f $(USPACEDIR)/dist/srv/`basename $$file` ; \ 129 124 done 130 -for lib in $(RD_LIBS) ; do \131 rm -f $(USPACEDIR)/dist/lib/`basename $$lib` ; \132 done133 125 -for file in $(RD_APPS) ; do \ 134 126 rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \ … … 136 128 -rm -f _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o $(OBJECTS) initrd.img image.boot Makefile.depend 137 129 138 _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o: $(COMPONENTS) $(RD_SRVS) $(RD_ LIBS) $(RD_APPS) _link.ld.in130 _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o: $(COMPONENTS) $(RD_SRVS) $(RD_APPS) _link.ld.in 139 131 for file in $(RD_SRVS) ; do \ 140 132 cp $$file $(USPACEDIR)/dist/srv/ ; \ 141 done142 for lib in $(RD_LIBS) ; do \143 cp $$lib $(USPACEDIR)/dist/lib/ ; \144 133 done 145 134 for file in $(RD_APPS) ; do \
Note:
See TracChangeset
for help on using the changeset viewer.