using conditionals in autoconf/automake

2001-05-23 Thread Gustavo Noronha Silva
Hello all, I need help with stuff regarding a configure.in and a Makefile.am, I'm stucked trying to find a way to make the 'make install' command conditionally install some files. I want it to test if GNOME is available (it is being done in configure), if it is, make install will install

Re: using conditionals in autoconf/automake

2001-05-23 Thread Andrew Suffield
On Wed, May 23, 2001 at 01:06:01PM -0300, Gustavo Noronha Silva wrote: I have one more question... I set up new commands for distclean: and clean: rules in my Makefile.am like this: distclean: rm -f `find . -name \*~` rm -f po/*.gmo clean: rm -f `find . -name \*~`

using conditionals in autoconf/automake

2001-05-23 Thread Gustavo Noronha Silva
Hello all, I need help with stuff regarding a configure.in and a Makefile.am, I'm stucked trying to find a way to make the 'make install' command conditionally install some files. I want it to test if GNOME is available (it is being done in configure), if it is, make install will install

Re: using conditionals in autoconf/automake

2001-05-23 Thread Peter S Galbraith
Gustavo Noronha Silva wrote: I need help with stuff regarding a configure.in and a Makefile.am, I'm stucked trying to find a way to make the 'make install' command conditionally install some files. I want it to test if GNOME is available (it is being done in configure), if it is, make

Re: using conditionals in autoconf/automake

2001-05-23 Thread Gustavo Noronha Silva
Em Wed, 23 May 2001 10:52:20 -0400 Peter S Galbraith [EMAIL PROTECTED] escreveu: Why don't you just build-depend on the GNOME stuff so that every architecture will have a similar package? I won't just compile the gnome stuff in it cause I don't think my little program should depend on the

Re: using conditionals in autoconf/automake

2001-05-23 Thread Andrew Suffield
On Wed, May 23, 2001 at 01:06:01PM -0300, Gustavo Noronha Silva wrote: I have one more question... I set up new commands for distclean: and clean: rules in my Makefile.am like this: distclean: rm -f `find . -name \*~` rm -f po/*.gmo clean: rm -f `find . -name \*~`

Re: using conditionals in autoconf/automake

2001-05-23 Thread Ove Kaaven
On Wed, 23 May 2001, Gustavo Noronha Silva wrote: I need help with stuff regarding a configure.in and a Makefile.am, I'm stucked trying to find a way to make the 'make install' command conditionally install some files. Well, here's what one of my projects do: configure.in: ...