aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rwxr-xr-xrun2
2 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 99ffdcf..f3a6713 100644
--- a/Makefile
+++ b/Makefile
@@ -7,4 +7,4 @@ compile:
@$(MAKE) --no-print-directory -C apps/
clean:
- @find src/ apps/ \( -name "*.o" -or -name "*.elf" \) -type f -delete
+ @find src/ apps/ \( -name "*.o" -or -name "*.elf" -or -name "*.bin" \) -type f -delete
diff --git a/run b/run
index 2cf0cc5..97fe9e0 100755
--- a/run
+++ b/run
@@ -123,7 +123,7 @@ make_sync() {
make --always-make --dry-run |
grep -wE 'gcc' |
grep -w '\-c' |
- jq -nR '[inputs|{directory:"'"$(pwd)"'", command:., file: match(" [^ ]+$").string[1:]}]' \
+ jq -nR '[inputs|{directory:"'"$(pwd)"'/src/", command:., file: match(" [^ ]+$").string[1:]}]' \
>compile_commands.json
}