Sujet : Re: Long filenames in DOS/Windows and Unix/Linux
De : ldo (at) *nospam* nz.invalid (Lawrence D'Oliveiro)
Groupes : comp.unix.programmerDate : 04. Sep 2024, 07:49:16
Autres entêtes
Organisation : A noiseless patient Spider
Message-ID : <vb8vtc$3ntvj$1@dont-email.me>
References : 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
User-Agent : Pan/0.160 (Toresk; )
On Tue, 03 Sep 2024 21:29:24 -0700, Keith Thompson wrote:
Lawrence D'Oliveiro <ldo@nz.invalid> writes:
>
The Makefiles in question are not using the default build rules for C
code: they are building other things, with explicit use of the "$<" and
"$@" variable substitutions.
I'd still be interested in seeing an example.
Here’s one I whipped up:
-- output\ file : input\ file cp "$<" "$@"input\ file : /dev/null cp "$<" "$@"
-- If the tabs don’t make it across, you know where they should go. ;)