diff options
author | Tomasz Kramkowski <tk@the-tk.com> | 2021-07-21 23:54:35 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tk@the-tk.com> | 2021-07-21 23:54:35 +0100 |
commit | 7911c0536c03bca81304521bf7594366a6449044 (patch) | |
tree | 6af427fbfa193cec8001e6dec0a08662aa2eb0d9 /.compile.do | |
parent | 7ba7bf2962dccd55a17d3ff92e098968226fbba3 (diff) | |
download | pack-7911c0536c03bca81304521bf7594366a6449044.tar.gz pack-7911c0536c03bca81304521bf7594366a6449044.tar.xz pack-7911c0536c03bca81304521bf7594366a6449044.zip |
default.o.do: Remove the need for a temporary depfile
By making .compile print dependencies on stdout, the need for a
temporary depfile is now gone as the dependencies can be piped straight
into parse-depfile.
Diffstat (limited to '.compile.do')
-rwxr-xr-x | .compile.do | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.compile.do b/.compile.do index 6634b55..3f48dc4 100755 --- a/.compile.do +++ b/.compile.do @@ -4,5 +4,5 @@ redo-ifchange .vars.rc exec >"$3" echo "# generated by $0" declare -p CC CFLAGS CPPFLAGS -echo '"$CC" -MMD -MF "$depfile" "${CFLAGS[@]}" "${CPPFLAGS[@]}" -c -o "$3" "${1%.o}.c"' +echo '"$CC" -MMD -MF - "${CFLAGS[@]}" "${CPPFLAGS[@]}" -c -o "$3" "${1%.o}.c"' if command -v redo-stamp &>/dev/null; then redo-stamp <"$3"; fi |