mirror of git://gcc.gnu.org/git/gcc.git
libgm2: Adjust 'autogen.sh' to 'ACLOCAL_AMFLAGS', and simplify
Specifying explicit '-I ..' before '-I ../config' is what (most) other GCC components do. Specifying '-I .' is not necessary. With the order of '-I's aligned, 'autogen.sh' and plain 'autoreconf' then produce identical results. libgm2/ * autogen.sh: For 'aclocal', 'autoreconf', remove '-I .', add '-I ..'. * Makefile.am (ACLOCAL_AMFLAGS): Remove '-I .'. * libm2cor/Makefile.am (ACLOCAL_AMFLAGS): Likewise. * libm2iso/Makefile.am (ACLOCAL_AMFLAGS): Likewise. * libm2log/Makefile.am (ACLOCAL_AMFLAGS): Likewise. * libm2min/Makefile.am (ACLOCAL_AMFLAGS): Likewise. * libm2pim/Makefile.am (ACLOCAL_AMFLAGS): Likewise. * aclocal.m4: Regenerate. * Makefile.in: Likewise. * libm2cor/Makefile.in: Likewise. * libm2iso/Makefile.in: Likewise. * libm2log/Makefile.in: Likewise. * libm2min/Makefile.in: Likewise. * libm2pim/Makefile.in: Likewise.
This commit is contained in:
parent
06ef1583d6
commit
8b8a4fb8ef
|
@ -25,7 +25,7 @@ AUTOMAKE_OPTIONS = 1.8 foreign
|
|||
|
||||
SUFFIXES = .c .mod .def .o .obj .lo .a
|
||||
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
# Multilib support.
|
||||
MAKEOVERRIDES=
|
||||
|
|
|
@ -90,15 +90,15 @@ host_triplet = @host@
|
|||
target_triplet = @target@
|
||||
subdir = .
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../libtool.m4 \
|
||||
$(top_srcdir)/../ltoptions.m4 $(top_srcdir)/../ltsugar.m4 \
|
||||
$(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \
|
||||
$(top_srcdir)/../config/acx.m4 \
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
|
||||
$(top_srcdir)/../config/depstand.m4 \
|
||||
$(top_srcdir)/../config/lead-dot.m4 \
|
||||
$(top_srcdir)/../config/multi.m4 \
|
||||
$(top_srcdir)/../config/no-executables.m4 \
|
||||
$(top_srcdir)/../config/override.m4 $(top_srcdir)/configure.ac
|
||||
$(top_srcdir)/../config/override.m4 \
|
||||
$(top_srcdir)/../libtool.m4 $(top_srcdir)/../ltoptions.m4 \
|
||||
$(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
|
||||
$(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
|
||||
|
@ -332,7 +332,7 @@ top_srcdir = @top_srcdir@
|
|||
# Modula-2 support.
|
||||
AUTOMAKE_OPTIONS = 1.8 foreign
|
||||
SUFFIXES = .c .mod .def .o .obj .lo .a
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
# Multilib support.
|
||||
MAKEOVERRIDES =
|
||||
|
|
|
@ -1187,14 +1187,14 @@ AC_SUBST([am__tar])
|
|||
AC_SUBST([am__untar])
|
||||
]) # _AM_PROG_TAR
|
||||
|
||||
m4_include([../libtool.m4])
|
||||
m4_include([../ltoptions.m4])
|
||||
m4_include([../ltsugar.m4])
|
||||
m4_include([../ltversion.m4])
|
||||
m4_include([../lt~obsolete.m4])
|
||||
m4_include([../config/acx.m4])
|
||||
m4_include([../config/depstand.m4])
|
||||
m4_include([../config/lead-dot.m4])
|
||||
m4_include([../config/multi.m4])
|
||||
m4_include([../config/no-executables.m4])
|
||||
m4_include([../config/override.m4])
|
||||
m4_include([../libtool.m4])
|
||||
m4_include([../ltoptions.m4])
|
||||
m4_include([../ltsugar.m4])
|
||||
m4_include([../ltversion.m4])
|
||||
m4_include([../lt~obsolete.m4])
|
||||
|
|
|
@ -21,9 +21,8 @@ rm -rf autom4te.cache
|
|||
|
||||
# libtoolize
|
||||
rm -f aclocal.m4
|
||||
# aclocal -I . -I config -I ../config
|
||||
aclocal -I . -I ../config
|
||||
autoreconf -I . -I ../config
|
||||
aclocal -I .. -I ../config
|
||||
autoreconf -I .. -I ../config
|
||||
automake --include-deps
|
||||
|
||||
rm -rf autom4te.cache
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
SUFFIXES = .c .cc .mod .def .o .obj .lo .a .la
|
||||
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
VPATH = . @srcdir@ @srcdir@/../../gcc/m2/gm2-libs-coroutines
|
||||
|
||||
|
|
|
@ -107,15 +107,15 @@ host_triplet = @host@
|
|||
target_triplet = @target@
|
||||
subdir = libm2cor
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../libtool.m4 \
|
||||
$(top_srcdir)/../ltoptions.m4 $(top_srcdir)/../ltsugar.m4 \
|
||||
$(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \
|
||||
$(top_srcdir)/../config/acx.m4 \
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
|
||||
$(top_srcdir)/../config/depstand.m4 \
|
||||
$(top_srcdir)/../config/lead-dot.m4 \
|
||||
$(top_srcdir)/../config/multi.m4 \
|
||||
$(top_srcdir)/../config/no-executables.m4 \
|
||||
$(top_srcdir)/../config/override.m4 $(top_srcdir)/configure.ac
|
||||
$(top_srcdir)/../config/override.m4 \
|
||||
$(top_srcdir)/../libtool.m4 $(top_srcdir)/../ltoptions.m4 \
|
||||
$(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
|
||||
$(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am
|
||||
|
@ -384,7 +384,7 @@ top_build_prefix = @top_build_prefix@
|
|||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
SUFFIXES = .c .cc .mod .def .o .obj .lo .a .la
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
# Multilib support.
|
||||
MAKEOVERRIDES =
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
SUFFIXES = .c .cc .mod .def .o .obj .lo .a .la
|
||||
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
VPATH = . @srcdir@ @srcdir@/../../gcc/m2/gm2-libs-iso
|
||||
|
||||
|
|
|
@ -107,15 +107,15 @@ host_triplet = @host@
|
|||
target_triplet = @target@
|
||||
subdir = libm2iso
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../libtool.m4 \
|
||||
$(top_srcdir)/../ltoptions.m4 $(top_srcdir)/../ltsugar.m4 \
|
||||
$(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \
|
||||
$(top_srcdir)/../config/acx.m4 \
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
|
||||
$(top_srcdir)/../config/depstand.m4 \
|
||||
$(top_srcdir)/../config/lead-dot.m4 \
|
||||
$(top_srcdir)/../config/multi.m4 \
|
||||
$(top_srcdir)/../config/no-executables.m4 \
|
||||
$(top_srcdir)/../config/override.m4 $(top_srcdir)/configure.ac
|
||||
$(top_srcdir)/../config/override.m4 \
|
||||
$(top_srcdir)/../libtool.m4 $(top_srcdir)/../ltoptions.m4 \
|
||||
$(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
|
||||
$(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am
|
||||
|
@ -409,7 +409,7 @@ top_build_prefix = @top_build_prefix@
|
|||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
SUFFIXES = .c .cc .mod .def .o .obj .lo .a .la
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
# Multilib support.
|
||||
MAKEOVERRIDES =
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
SUFFIXES = .c .mod .def .o .obj .lo .a .la
|
||||
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
VPATH = . @srcdir@ @srcdir@/../../gcc/m2/gm2-libs-log
|
||||
|
||||
|
|
|
@ -107,15 +107,15 @@ host_triplet = @host@
|
|||
target_triplet = @target@
|
||||
subdir = libm2log
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../libtool.m4 \
|
||||
$(top_srcdir)/../ltoptions.m4 $(top_srcdir)/../ltsugar.m4 \
|
||||
$(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \
|
||||
$(top_srcdir)/../config/acx.m4 \
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
|
||||
$(top_srcdir)/../config/depstand.m4 \
|
||||
$(top_srcdir)/../config/lead-dot.m4 \
|
||||
$(top_srcdir)/../config/multi.m4 \
|
||||
$(top_srcdir)/../config/no-executables.m4 \
|
||||
$(top_srcdir)/../config/override.m4 $(top_srcdir)/configure.ac
|
||||
$(top_srcdir)/../config/override.m4 \
|
||||
$(top_srcdir)/../libtool.m4 $(top_srcdir)/../ltoptions.m4 \
|
||||
$(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
|
||||
$(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am
|
||||
|
@ -373,7 +373,7 @@ top_build_prefix = @top_build_prefix@
|
|||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
SUFFIXES = .c .mod .def .o .obj .lo .a .la
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
# Multilib support.
|
||||
MAKEOVERRIDES =
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
SUFFIXES = .c .mod .def .o .obj .lo .a .la
|
||||
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
VPATH = . @srcdir@/../../gcc/m2/gm2-libs-min
|
||||
|
||||
|
|
|
@ -107,15 +107,15 @@ host_triplet = @host@
|
|||
target_triplet = @target@
|
||||
subdir = libm2min
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../libtool.m4 \
|
||||
$(top_srcdir)/../ltoptions.m4 $(top_srcdir)/../ltsugar.m4 \
|
||||
$(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \
|
||||
$(top_srcdir)/../config/acx.m4 \
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
|
||||
$(top_srcdir)/../config/depstand.m4 \
|
||||
$(top_srcdir)/../config/lead-dot.m4 \
|
||||
$(top_srcdir)/../config/multi.m4 \
|
||||
$(top_srcdir)/../config/no-executables.m4 \
|
||||
$(top_srcdir)/../config/override.m4 $(top_srcdir)/configure.ac
|
||||
$(top_srcdir)/../config/override.m4 \
|
||||
$(top_srcdir)/../libtool.m4 $(top_srcdir)/../ltoptions.m4 \
|
||||
$(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
|
||||
$(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am
|
||||
|
@ -363,7 +363,7 @@ top_build_prefix = @top_build_prefix@
|
|||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
SUFFIXES = .c .mod .def .o .obj .lo .a .la
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
# Multilib support.
|
||||
MAKEOVERRIDES =
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
|
||||
SUFFIXES = .c .mod .def .o .obj .lo .a .la
|
||||
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
VPATH = . @srcdir@ @srcdir@/../../gcc/m2/gm2-libs
|
||||
|
||||
|
|
|
@ -107,15 +107,15 @@ host_triplet = @host@
|
|||
target_triplet = @target@
|
||||
subdir = libm2pim
|
||||
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../libtool.m4 \
|
||||
$(top_srcdir)/../ltoptions.m4 $(top_srcdir)/../ltsugar.m4 \
|
||||
$(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \
|
||||
$(top_srcdir)/../config/acx.m4 \
|
||||
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
|
||||
$(top_srcdir)/../config/depstand.m4 \
|
||||
$(top_srcdir)/../config/lead-dot.m4 \
|
||||
$(top_srcdir)/../config/multi.m4 \
|
||||
$(top_srcdir)/../config/no-executables.m4 \
|
||||
$(top_srcdir)/../config/override.m4 $(top_srcdir)/configure.ac
|
||||
$(top_srcdir)/../config/override.m4 \
|
||||
$(top_srcdir)/../libtool.m4 $(top_srcdir)/../ltoptions.m4 \
|
||||
$(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
|
||||
$(top_srcdir)/../lt~obsolete.m4 $(top_srcdir)/configure.ac
|
||||
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
|
||||
$(ACLOCAL_M4)
|
||||
DIST_COMMON = $(srcdir)/Makefile.am
|
||||
|
@ -398,7 +398,7 @@ top_build_prefix = @top_build_prefix@
|
|||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
SUFFIXES = .c .mod .def .o .obj .lo .a .la
|
||||
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
|
||||
ACLOCAL_AMFLAGS = -I .. -I ../config
|
||||
|
||||
# Multilib support.
|
||||
MAKEOVERRIDES =
|
||||
|
|
Loading…
Reference in New Issue