aboutsummaryrefslogtreecommitdiff
path: root/libgfortran/Makefile.in
diff options
context:
space:
mode:
authorJakub Jelinek <jakub@redhat.com>2005-12-09 14:50:11 +0100
committerJakub Jelinek <jakub@gcc.gnu.org>2005-12-09 14:50:11 +0100
commit891c05b102b1794c40ae18b1426880aac0bc193c (patch)
tree7211a5585870f91f57adfacb2b999b620de36cbb /libgfortran/Makefile.in
parentf01cf809285f7d659f1b4ae1541041a0257df0bb (diff)
downloadgcc-891c05b102b1794c40ae18b1426880aac0bc193c.zip
gcc-891c05b102b1794c40ae18b1426880aac0bc193c.tar.gz
gcc-891c05b102b1794c40ae18b1426880aac0bc193c.tar.bz2
re PR libfortran/24991 (gfortran build fails with - error:gthr-default.h: No such file or directory)
PR libfortran/24991 * acinclude.m4: Include acx.m4 and no-executables.m4. * configure.ac: Add GCC_TOPLEVEL_SUBDIRS. * configure: Rebuilt. * Makefile.am (AM_CPPFLAGS): Use $(host_subdir) in build dir path. * Makefile.in: Rebuilt. From-SVN: r108280
Diffstat (limited to 'libgfortran/Makefile.in')
-rw-r--r--libgfortran/Makefile.in9
1 files changed, 7 insertions, 2 deletions
diff --git a/libgfortran/Makefile.in b/libgfortran/Makefile.in
index c34a86c..c1aa83a 100644
--- a/libgfortran/Makefile.in
+++ b/libgfortran/Makefile.in
@@ -48,6 +48,8 @@ DIST_COMMON = $(am__configure_deps) $(srcdir)/../config.guess \
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
+ $(top_srcdir)/../config/acx.m4 \
+ $(top_srcdir)/../config/no-executables.m4 \
$(top_srcdir)/../libtool.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
@@ -319,6 +321,7 @@ build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
+build_subdir = @build_subdir@
build_vendor = @build_vendor@
datadir = @datadir@
enable_shared = @enable_shared@
@@ -329,6 +332,7 @@ host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
+host_subdir = @host_subdir@
host_vendor = @host_vendor@
includedir = @includedir@
infodir = @infodir@
@@ -349,6 +353,7 @@ target = @target@
target_alias = @target_alias@
target_cpu = @target_cpu@
target_os = @target_os@
+target_subdir = @target_subdir@
target_vendor = @target_vendor@
toolexecdir = @toolexecdir@
toolexeclibdir = @toolexeclibdir@
@@ -360,7 +365,7 @@ libgfortranbegin_la_SOURCES = fmain.c
libgfortranbegin_la_LDFLAGS = -static
AM_CPPFLAGS = -iquote$(srcdir)/io -I$(srcdir)/$(MULTISRCTOP)../gcc \
-I$(srcdir)/$(MULTISRCTOP)../gcc/config \
- -I$(MULTIBUILDTOP)../../gcc -D_GNU_SOURCE
+ -I$(MULTIBUILDTOP)../../$(host_subdir)/gcc -D_GNU_SOURCE
gfor_io_src = \
io/close.c \
@@ -2488,7 +2493,7 @@ distclean-tags:
distdir: $(DISTFILES)
$(am__remove_distdir)
mkdir $(distdir)
- $(mkdir_p) $(distdir)/.. $(distdir)/m4
+ $(mkdir_p) $(distdir)/.. $(distdir)/../config $(distdir)/m4
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
list='$(DISTFILES)'; for file in $$list; do \