diff options
-rw-r--r-- | Makefile | 2 | ||||
-rwxr-xr-x | run | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -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 @@ -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 } |