aboutsummaryrefslogtreecommitdiff
path: root/.boilerplates/c/run
blob: 6eea488f8dd1fc8e2a12d64ed4a50edb14a98882 (plain) (blame)
1
2
3
4
5
6
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 "$@"