something of the sorts would be really helpful, and would help not require having to write too many build scripts, or have too long lines.
| mkdir -p build/src
| for f in src/*; do
| echo "| gcc -I../include/ -Wall -Werror -pedantic -std=gnu18 -c \"../$f\" -o \"${f%.c}.o\""
| done | tee build/.fac
Perhaps | would not work since it seems to not require a blank line between rules, and this might break old facfiles.
something of the sorts would be really helpful, and would help not require having to write too many build scripts, or have too long lines.
Perhaps
|would not work since it seems to not require a blank line between rules, and this might break old facfiles.