Re: question using VPATH'S ...

2008-06-30 Thread Roberto Alejandro Espí Muñoz
Ok, I thinks I didn't explain myself correctly then ... From what I saw there I can use either bindir, libdir or includedir for when I'm installing the completed targets. What I want to do is to locate them before that moment. I noticed that all my libs and binaries are ending up in a hidden .lib

Dependencies: non-standard path to system headers

2008-06-30 Thread Ineiev
Some time ago I tested build process of my project on cygwin. Some parts of the project are AVR-hosted, so I checked if WinAVR were capable to build them. WinAVR gcc produces dependencies that shall confuse `make', like these: sampler.o: ../../../stribog/sw/auxilia/coil/sampler.c \ c:/winavr-20

Re: How to install shell script?

2008-06-30 Thread Steven Woody
On Mon, Jun 30, 2008 at 7:15 PM, Harlan Stenn <[EMAIL PROTECTED]> wrote: >> On Mon, Jun 30, 2008 at 4:39 PM, Harlan Stenn <[EMAIL PROTECTED]> wrote: >> > sysconf_SCRIPTS >> > >> >> Hi, >> >> If I do that, 'automake' will fail and report: >> >> Makefile.am:10: `sysconfdir' is not a legitimate dire

Re: How to install shell script?

2008-06-30 Thread Harlan Stenn
> On Mon, Jun 30, 2008 at 4:39 PM, Harlan Stenn <[EMAIL PROTECTED]> wrote: > > sysconf_SCRIPTS > > > > Hi, > > If I do that, 'automake' will fail and report: > > Makefile.am:10: `sysconfdir' is not a legitimate directory for `SCRIPTS' > > Did you miss somthing? Yes. So you will need to crea

Re: How to install shell script?

2008-06-30 Thread Steven Woody
On Mon, Jun 30, 2008 at 4:39 PM, Harlan Stenn <[EMAIL PROTECTED]> wrote: > sysconf_SCRIPTS > Hi, If I do that, 'automake' will fail and report: Makefile.am:10: `sysconfdir' is not a legitimate directory for `SCRIPTS' Did you miss somthing?

Re: How to install shell script?

2008-06-30 Thread Harlan Stenn
sysconf_SCRIPTS H -- > Hi, > > I use "sysconf_DATA= etc/net.up etc/net.down" in my Makefile.am > and expect that when I run 'make install' then those shell scripts > (net.up, net.down) can be installed in PREFIX/etc . It really work, > just except that these scripts are not chmod to executab

How to install shell script?

2008-06-30 Thread Steven Woody
Hi, I use "sysconf_DATA= etc/net.up etc/net.down" in my Makefile.am and expect that when I run 'make install' then those shell scripts (net.up, net.down) can be installed in PREFIX/etc . It really work, just except that these scripts are not chmod to executable. How do I make it happen? Tha