aboutsummaryrefslogtreecommitdiff
path: root/.boilerplates/c/run
diff options
context:
space:
mode:
Diffstat (limited to '.boilerplates/c/run')
-rwxr-xr-x.boilerplates/c/run7
1 files changed, 0 insertions, 7 deletions
diff --git a/.boilerplates/c/run b/.boilerplates/c/run
deleted file mode 100755
index 6eea488..0000000
--- a/.boilerplates/c/run
+++ /dev/null
@@ -1,7 +0,0 @@
-#!/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 "$@"