Changeset 0e8c158 in mainline for boot/Makefile
- Timestamp:
- 2018-10-12T12:18:16Z (6 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 6d00aff
- Parents:
- 8fefd8b
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-10-12 12:09:54)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2018-10-12 12:18:16)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile
r8fefd8b r0e8c158 67 67 cat "$(USPACE_PATH)/lib/c/arch/$(UARCH)/_link.ld" | sed 's/^STARTUP(.*)$$//g' > "$(DIST_PATH)/inc/_link.ld" 68 68 endif 69 for file in $(RD_APPS) ; do \ 70 cp "$$file" "$(DIST_PATH)/app/" ; \ 69 for app in $(RD_APPS) ; do \ 70 app_dir="`dirname "$$app"`" ; \ 71 app_name="`basename "$$app"`" ; \ 72 mkdir -p "$(DIST_PATH)/app/$$app_dir" ; \ 73 cp "$(USPACE_PATH)/app/$$app/$$app_name" "$(DIST_PATH)/app/$$app" ; \ 71 74 done 72 75 for file in $(RD_DATA) ; do \
Note:
See TracChangeset
for help on using the changeset viewer.