Paul D. Smith writes:
> Does BeOS have enough of a shell that you can run configure and get
> useful results?
Yes. It uses GNU bash 2.03.
> bh> 2) Error during "make distclean":
>
> bh> Apparently $(MAKE) = /bework/gnubuild/make-3.79/./make has been
> bh> removed during the "make distclean". I think, recursing into the
> bh> subdirectories first, and removing the files in the current
> bh> directory afterwards should fix the problem.
>
> The ordering of these targets is handled automatically by automake. I'm
> not aware of any way for automake packages to affect this reliably.
> I'll ask the automake folks what they think.
Alternative solutions would be
- to create the "make" executable under the name "xmake". This is what gcc
does.
- to create the "make" executable in a subdirectory, say "bin/make".
- to move the entire sources to a src/ subdirectory. This will work, because
many people have "." in their $PATH, but noone has "src" there.
Bruno