diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-06-19 10:42:37 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-06-20 00:25:13 -0400 |
commit | 1bf5c34239398dac1452e064b7194869054cf398 (patch) | |
tree | c2f4f0d0415fd9375c836e456395e568c4fcab8d /sim/Makefile.in | |
parent | 4ca8baee000128932f0cd61b226fa5b53656fc32 (diff) | |
download | gdb-1bf5c34239398dac1452e064b7194869054cf398.zip gdb-1bf5c34239398dac1452e064b7194869054cf398.tar.gz gdb-1bf5c34239398dac1452e064b7194869054cf398.tar.bz2 |
sim: unify cgen maintainer settings
Move these options up to the common dir so we only test & export
them once across all ports. It makes it available to targets that
aren't cgen-based, but those will just ignore the settings, so it
shouldn't be an issue.
Diffstat (limited to 'sim/Makefile.in')
-rw-r--r-- | sim/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sim/Makefile.in b/sim/Makefile.in index 925e7670..2737e10 100644 --- a/sim/Makefile.in +++ b/sim/Makefile.in @@ -205,6 +205,7 @@ am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \ $(top_srcdir)/../ltversion.m4 $(top_srcdir)/../lt~obsolete.m4 \ $(top_srcdir)/m4/sim_ac_option_alignment.m4 \ $(top_srcdir)/m4/sim_ac_option_assert.m4 \ + $(top_srcdir)/m4/sim_ac_option_cgen_maint.m4 \ $(top_srcdir)/m4/sim_ac_option_debug.m4 \ $(top_srcdir)/m4/sim_ac_option_endian.m4 \ $(top_srcdir)/m4/sim_ac_option_environment.m4 \ @@ -638,6 +639,7 @@ CCDEPMODE = @CCDEPMODE@ CC_FOR_BUILD = @CC_FOR_BUILD@ CFLAGS = @CFLAGS@ CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@ +CGEN_MAINT = @CGEN_MAINT@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CYGPATH_W = @CYGPATH_W@ @@ -727,6 +729,8 @@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ +cgen = @cgen@ +cgendir = @cgendir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ |