diff options
author | Mike Frysinger <vapier@gentoo.org> | 2021-01-17 06:17:36 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2021-03-07 13:41:45 -0500 |
commit | 6bddc3e8b480773f84a6694605a00ad0b2cee0c1 (patch) | |
tree | 7147d2958e6a2bdb437b50e997db8e4c0557b029 /sim/configure.ac | |
parent | 7ce45db69115b3a9fbf69b2ba5b7126be88cf2e9 (diff) | |
download | gdb-6bddc3e8b480773f84a6694605a00ad0b2cee0c1.zip gdb-6bddc3e8b480773f84a6694605a00ad0b2cee0c1.tar.gz gdb-6bddc3e8b480773f84a6694605a00ad0b2cee0c1.tar.bz2 |
sim: switch top level to automake
This doesn't gain us much by itself, but it sets us up for using more
features as we try to unify ports and avoid recursive make.
Diffstat (limited to 'sim/configure.ac')
-rw-r--r-- | sim/configure.ac | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sim/configure.ac b/sim/configure.ac index 80e1b42..de57796 100644 --- a/sim/configure.ac +++ b/sim/configure.ac @@ -1,13 +1,19 @@ dnl Process this file with autoconf to produce a configure script. -AC_INIT(Makefile.in) -AC_CONFIG_MACRO_DIRS([.. ../config]) +dnl NB: The version here is not used. If gdb ever changes from generating its +dnl version at build time to autoconf time (like bfd et al do), we can switch. +AC_INIT([sim], [0], + [https://sourceware.org/bugzilla/enter_bug.cgi?product=gdb&component=sim], + [], [https://sourceware.org/gdb/wiki/Sim/]) + +AC_CANONICAL_SYSTEM + +AM_INIT_AUTOMAKE AC_PROG_CC AC_PROG_INSTALL AC_CHECK_TOOL(AR, ar) AC_CHECK_TOOL(RANLIB, ranlib, :) -AC_CANONICAL_SYSTEM AC_ARG_PROGRAM AC_PROG_CC AC_PROG_CPP |