aboutsummaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
Diffstat (limited to 'make')
-rwxr-xr-xmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/make b/make
index d0d1a5d..89e196d 100755
--- a/make
+++ b/make
@@ -54,12 +54,12 @@ function main() {
help
;;
clean)
- echo 'rm -vf **/*.hex **/*~ **/*.elf **/*.o **/*.cpp'
- rm -vf **/*.hex **/*~ **/*.elf **/*.o **/*.cpp
+ echo 'rm -vf **/*~ hex/*.hex ui/**/*.elf ui/**/*.o ui/**/*.cpp'
+ rm -vf **/*~ hex/*.hex ui/**/*.elf ui/**/*.o ui/**/*.cpp
;;
dfp)
shift
- ./bin/dfp-install.sh "$@"
+ exec ./bin/dfp-install.sh "$@"
;;
docs)
make-docs
@@ -79,7 +79,7 @@ function main() {
grep -E 'TODO:|FIXME:' **/*.[ch]
;;
*)
- ./bin/build-all.sh "$@"
+ exec ./bin/build-all.sh "$@"
;;
esac
}