diff options
author | Thomas Voss <mail@thomasvoss.com> | 2024-10-30 01:51:14 +0100 |
---|---|---|
committer | Thomas Voss <mail@thomasvoss.com> | 2024-10-30 01:51:14 +0100 |
commit | 042e43247f396a9000fead59d9bff87bf12806d6 (patch) | |
tree | e902784464cbe9ce3c5114d513b016523e7e4b29 /vendor/librune/gen/mkfile | |
parent | 170b8a92434233241c990c3e9432786de3262bcd (diff) |
Completely revamp the grab source code
Some of the (many) few changes are:
- Multithreading for significantly faster performance
- The -p/--predicate flag
- Byte offsets as the default
- No customizable colors (maybe this will come back later)
- Newer edition of mlib (formerly librune)
Diffstat (limited to 'vendor/librune/gen/mkfile')
-rwxr-xr-x | vendor/librune/gen/mkfile | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/vendor/librune/gen/mkfile b/vendor/librune/gen/mkfile deleted file mode 100755 index a55b08a..0000000 --- a/vendor/librune/gen/mkfile +++ /dev/null @@ -1,37 +0,0 @@ -#!/bin/sh - -set -e -cd "${0%/*}/.." -exec >Makefile - -cat <<make -.POSIX: - -CC = cc -CFLAGS = -Wall -Wextra -Wpedantic -g -ggdb3 -fanalyzer -Iinclude - -make - -printf 'objs = \\\n' -find lib -name '*.c' | sort | sed ' - s/c$/o/ - s/.*/\t& \\/ - $s/ \\$// -' - -cat <<make - -all: \$(objs) - -make - -find lib -name '*.c' | sort | sed -E 's/(.*)c$/\1o: \1c/' - -cat <<make - -clean: - find lib -name '*.o' -delete - -ls: - @echo "alias ls='ls --color=auto -I \"*.o\" -I \"compile_commands.json\"'" >&2 -make |