Changeset de9c5cb in mainline for boot/arch/sparc64/loader/Makefile
- Timestamp:
- 2008-09-14T14:41:31Z (16 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6aae7a3b
- Parents:
- dac629e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/arch/sparc64/loader/Makefile
rdac629e rde9c5cb 95 95 endif 96 96 97 RD_ TASKS = \97 RD_SRVS = \ 98 98 $(USPACEDIR)/srv/fb/fb \ 99 99 $(USPACEDIR)/srv/kbd/kbd \ 100 100 $(USPACEDIR)/srv/console/console \ 101 101 $(USPACEDIR)/srv/fs/tmpfs/tmpfs \ 102 $(USPACEDIR)/srv/fs/fat/fat \ 102 $(USPACEDIR)/srv/fs/fat/fat 103 104 RD_APPS = \ 103 105 $(USPACEDIR)/app/tetris/tetris \ 104 106 $(USPACEDIR)/app/tester/tester \ … … 122 124 123 125 clean: 124 -for task in $(RD_TASKS) ; do \ 125 rm -f $(USPACEDIR)/dist/sbin/`basename $$task` ; \ 126 -for file in $(RD_SRVS) ; do \ 127 rm -f $(USPACEDIR)/dist/srv/`basename $$file` ; \ 128 done 129 -for file in $(RD_APPS) ; do \ 130 rm -f $(USPACEDIR)/dist/app/`basename $$file` ; \ 126 131 done 127 132 -rm -f _components.h _components.c _link.ld $(COMPONENT_OBJECTS) $(OBJECTS) initrd.img image.boot image.map image.disasm Makefile.depend 128 133 129 _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o: $(COMPONENTS) $(RD_TASKS) _link.ld.in 130 for task in $(RD_TASKS) ; do \ 131 cp $$task $(USPACEDIR)/dist/sbin/ ; \ 134 _components.h _components.c _link.ld $(COMPONENT_OBJECTS) initrd.o: $(COMPONENTS) $(RD_SRVS) $(RD_APPS) _link.ld.in 135 for file in $(RD_SRVS) ; do \ 136 cp $$file $(USPACEDIR)/dist/srv/ ; \ 137 done 138 for file in $(RD_APPS) ; do \ 139 cp $$file $(USPACEDIR)/dist/app/ ; \ 132 140 done 133 141 ifeq ($(RDFMT),tmpfs)
Note:
See TracChangeset
for help on using the changeset viewer.