diff options
-rw-r--r-- | .boilerplates/c/.gitignore | 2 | ||||
-rwxr-xr-x | .boilerplates/c/run | 4 | ||||
-rw-r--r-- | packages.txt | 1 |
3 files changed, 7 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 "$@" diff --git a/packages.txt b/packages.txt index 268574e..ed94404 100644 --- a/packages.txt +++ b/packages.txt @@ -90,6 +90,7 @@ inxi jitsi-meet-desktop-bin joker-bin jp2a +jq kbfs keepassxc keybase |