aboutsummaryrefslogtreecommitdiff
path: root/.boilerplates/c/run
diff options
context:
space:
mode:
Diffstat (limited to '.boilerplates/c/run')
-rwxr-xr-x.boilerplates/c/run4
1 files changed, 4 insertions, 0 deletions
diff --git a/.boilerplates/c/run b/.boilerplates/c/run
index 50bf221..6eea488 100755
--- a/.boilerplates/c/run
+++ b/.boilerplates/c/run
@@ -1,3 +1,7 @@
#!/usr/bin/env sh
+make --always-make --dry-run | grep -w 'gcc' | grep -w '\-c' | jq -nR '[inputs|{directory:".", command:., file: match(" [^ ]+$").string[1:]}]' > compile_commands.json
+
+ctags -R --exclude=.git --exclude=out .
+
make && ./out/name "$@"