Jianxiong Pan | 61de272 | 2020-07-14 10:57:22 +0800 | [diff] [blame^] | 1 | #!/bin/bash |
2 | |||||
3 | # Usage: | ||||
4 | # compile: Run in the root directory: | ||||
5 | # ./scripts/amlogic/clean.sh [board] | ||||
6 | |||||
7 | if [ "$1" == "" ]; then | ||||
8 | echo "usage: $0 [board]" | ||||
9 | scripts/amlogic/mk.sh --config | ||||
10 | exit -1 | ||||
11 | fi | ||||
12 | |||||
13 | export clean=no | ||||
14 | scripts/amlogic/mk.sh $1 clean |