aboutsummaryrefslogtreecommitdiff
path: root/.boilerplates/c/run
diff options
context:
space:
mode:
authorMarvin Borner2022-05-31 14:17:19 +0200
committerMarvin Borner2022-05-31 14:17:19 +0200
commitb8be82d9113dd0fec9021aa573039cc64dbd849a (patch)
tree0694d21e5ba03e843dc6f03d1c5b1ed033123875 /.boilerplates/c/run
parent272cc6e941d798d7270fcf74a98f592ef06e14ac (diff)
Clean
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 "$@"