Commit dd6ef191 authored by gejun's avatar gejun

fix tools/clean_all_makefile & add tools/clean_all_examples

Change-Id: Icc47b49cc26ac57e0cb1b2855bc87fcd6afd311a
parent 48a0e323
saved_pwd_before_making=$PWD
for file in `find example -name Makefile`; do
cd $(dirname $file)
echo -e "\n[$file]"
make -s clean
cd $saved_pwd_before_making
done
#!/bin/bash
saved_pwd_before_making=$PWD
for file in `find . -name Makefile`; do
cd $(dirname $file)
echo -e "\n[$file]"
make -s clean
cd $saved_pwd_before_making
done
#!/bin/bash
saved_pwd_before_making=$PWD
for file in `find . -name Makefile`; do
cd $(dirname $file)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment