diff options
author | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-26 22:52:36 +0000 |
---|---|---|
committer | bryce <bryce@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-03-26 22:52:36 +0000 |
commit | 21f4579d30430341c749f731c5f34863eaa607cc (patch) | |
tree | b470585e9c89318e1c6e3a638180fbdc740e324a /libffi/configure.in | |
parent | c3037e20b8ea0e6482bf6ada4213c4b52b6bed3d (diff) | |
download | gcc-21f4579d30430341c749f731c5f34863eaa607cc.tar.gz |
* configure.in: Make target subdirectory in build dir.
* Makefile.am: Override suffix based rules to specify correct output
subdirectory.
* Makefile.in: Rebuilt.
* configure: Rebuilt.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@40853 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libffi/configure.in')
-rw-r--r-- | libffi/configure.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libffi/configure.in b/libffi/configure.in index d26887b85f6..8f52dff2d16 100644 --- a/libffi/configure.in +++ b/libffi/configure.in @@ -34,6 +34,8 @@ AC_SUBST(libffi_basedir) AC_CANONICAL_HOST +AM_PROG_LIBTOOL + AM_INIT_AUTOMAKE(libffi,2.00-beta,no-define) AC_EXEEXT @@ -137,3 +139,12 @@ else cp fficonfig.h include/fficonfig.h fi ) + +# Make target subdirectories if required. +if ! test -d src; then + mkdir src +fi + +if ! test -d src/${TARGETDIR}; then + mkdir src/${TARGETDIR} +fi |