Changeset 356c386 in mainline for boot/Makefile
- Timestamp:
- 2017-04-04T14:35:03Z (8 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ff87f70
- Parents:
- 4b583f4
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
boot/Makefile
r4b583f4 r356c386 68 68 cp "$$file" "$(DIST_PATH)/app/" ; \ 69 69 done 70 for file in $(RD_DATA) ; do \ 71 cp "$$file" "$(DIST_PATH)/" ; \ 72 done 70 73 ifeq ($(CONFIG_PCUT_TESTS),y) 71 74 echo "echo Running all tests..." >"$(DIST_PATH)/test/run_all" … … 84 87 echo "</ul></body></html>" >>"$(DIST_PATH)/test/test.html" 85 88 endif 86 89 87 90 ifeq ($(CONFIG_PCUT_SELF_TESTS),y) 88 91 echo "echo Running all PCUT self-tests..." >"$(DIST_PATH)/test/run_pcut" … … 102 105 echo "</ul></body></html>" >>"$(DIST_PATH)/test/pcut.html" 103 106 endif 104 107 105 108 for drv in $(RD_DRVS) ; do \ 106 109 drv_dir="`dirname "$$drv"`" ; \ … … 135 138 clean_dist: 136 139 rm -f $(INITRD).img $(COMPS_H) $(COMPS_C) $(LINK) $(LINK).comp *.co 140 find $(USPACE_PATH)/dist -mindepth 1 -maxdepth 1 -type f -exec rm \{\} \; 137 141 rm -f $(USPACE_PATH)/dist/srv/* 138 142 rm -rf $(USPACE_PATH)/dist/drv/*
Note:
See TracChangeset
for help on using the changeset viewer.