aboutsummaryrefslogtreecommitdiff
path: root/make
diff options
context:
space:
mode:
authorSelene ToyKeeper2023-11-05 15:54:45 -0700
committerSelene ToyKeeper2023-11-05 15:54:45 -0700
commit76fd7e313f2cab83c879cbf8a09cddc6585d3a76 (patch)
tree8a01a3265231b1d3470374e0ef1b9214f2405fb9 /make
parentFixes syntax errors when USE_MANUAL_MEMORY is undefined. (diff)
parentMerge branch 'gretel-actions' into trunk (diff)
downloadanduril-76fd7e313f2cab83c879cbf8a09cddc6585d3a76.tar.gz
anduril-76fd7e313f2cab83c879cbf8a09cddc6585d3a76.tar.bz2
anduril-76fd7e313f2cab83c879cbf8a09cddc6585d3a76.zip
Merge branch 'trunk' into DurvalMenezes-undef_USE_MANUAL_MEMORY_fix
* trunk: removed test branch from action triggers (the action works and seems ready to merge) test: is apt-get any faster than apt? github actions: cache the Atmel DFP files between runs fixed intentional error, because CI build-fail test worked correctly help CI detect build failures initial test to fix branch names and see if actions work make clean: don't remove files in arch/dfp/ docs: added info on contributing, fixed minor formatting issues basic compile workflow publishing artifacts to test
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
}