Alexandre Duret-Lutz <[EMAIL PROTECTED]> wrote:
...
> Jim> What do you think about dropping that warning altogether,
> Jim> or at least allowing packages like the coreutils to
> Jim> disable that part of -Wall?
...
> How can we do this? Shall we split -Wportability into two
> options? How woul
the following will break on distclean aith automake 1.7.5:
Makefile.am:
SUBDIRS=a
AUTOMAKE_OPTIONS = subdir-objects
bin_PROGRAMS=foo
foo_SOURCES=a/foo.cc
a/Makefile.am
bin_PROGRAMS=bar
bar_SOURCES=bar.cc
The failure is because subdirs are distcleaned first, and a/.deps is rm
-rf'd before the
Hi all list's members,
I've been trying to solve some problems with Automake these days,
since I am new to autotools.
My library has a large set of source files organized into several sub
directories.
top
|- src
||- pkg1
| |- pkg1.1
| ||- src111.{c,h}
|