Do not install a binary

2001-06-14 Thread Laszlo Kovacs
Hello, I have a binary that I use as a build tool only to build the rest of the package and dont want to install it. Any ideas about how to write up a Makefile.am for this? Please reply to me directly as I am not on this list. Thanks, Laszlo

Re: Do not install a binary

2001-06-14 Thread Stephane Genaud
I have a binary that I use as a build tool only to build the rest of the package and dont want to install it. Any ideas about how to write up a Makefile.am for this? Laszlo, There is a noinst label for this. For instance, in your Makefile.am : noinst_PROGRAMS = yourbintool which works

Re: Do not install a binary

2001-06-14 Thread László Kovács
Stephane Genaud wrote: I have a binary that I use as a build tool only to build the rest of the package and dont want to install it. Any ideas about how to write up a Makefile.am for this? Laszlo, There is a noinst label for this. For instance, in your Makefile.am :