"Todd A. Jacobs" wrote:
>
> Is there a way to have make automatically strip a binary when compiling a
> program? I saw something in a few Makefiles that said INSTALL_STRIP_FLAG,
> but I have no idea how to turn on stripping when make runs. Advice?
What you saw was probably part of an automake file. GNU install accepts
the -s option to strip the target file, as:
install -s this_binary /usr/local/bin/this_binary
The destination file will be stripped.
MSG
--
To unsubscribe: mail [EMAIL PROTECTED] with "unsubscribe"
as the Subject.