aboutsummaryrefslogtreecommitdiff
path: root/.boilerplates
diff options
context:
space:
mode:
authorMarvin Borner2020-06-10 16:49:42 +0200
committerMarvin Borner2020-06-10 16:49:42 +0200
commitf881c0edcaee2a2381a8ae98b1fdeb37029cc58a (patch)
treeed80db9839f022e070de61036c9961a9ed3ba2f4 /.boilerplates
parentc766ce8750207b502db2c1ea53b584145facf692 (diff)
Added compile_commands.json and tags generation
Diffstat (limited to '.boilerplates')
-rw-r--r--.boilerplates/c/.gitignore2
-rwxr-xr-x.boilerplates/c/run4
2 files changed, 6 insertions, 0 deletions
diff --git a/.boilerplates/c/.gitignore b/.boilerplates/c/.gitignore
index 89f9ac0..3a401d0 100644
--- a/.boilerplates/c/.gitignore
+++ b/.boilerplates/c/.gitignore
@@ -1 +1,3 @@
out/
+compile_commands.json
+tags
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 "$@"