* Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir,
INSTALL_PROGRAM, INSTALL_DATA): Use autoconf-set values. (docdir): Removed. * configure.in (AC_PREREQ): autoconf 2.5 or higher. (AC_PROG_INSTALL): Added. (AC_PROG_CC): Moved to before configure.host call. * configure: Rebuilt.
This commit is contained in:
parent
445289655a
commit
a271d1d966
2 changed files with 23 additions and 2 deletions
|
@ -1,3 +1,23 @@
|
|||
Wed Jun 26 12:24:55 1996 Jason Molenda (crash@godzilla.cygnus.co.jp)
|
||||
|
||||
* Makefile.in (bindir, libdir, datadir, mandir, infodir, includedir,
|
||||
INSTALL_PROGRAM, INSTALL_DATA): Use autoconf-set values.
|
||||
(docdir): Removed.
|
||||
* configure.in (AC_PREREQ): autoconf 2.5 or higher.
|
||||
(AC_PROG_INSTALL): Added.
|
||||
(AC_PROG_CC): Moved to before configure.host call.
|
||||
* configure: Rebuilt.
|
||||
|
||||
Wed Jun 5 08:28:13 1996 James G. Smith <jsmith@cygnus.co.uk>
|
||||
|
||||
* configure.in: Define @SIMCONF@ depending on mips target.
|
||||
* configure: Rebuild.
|
||||
* Makefile.in (run): Add @SIMCONF@ to control simulator
|
||||
construction.
|
||||
* gencode.c: Change LOADDRMASK to 64bit memory model only.
|
||||
* interp.c: Remove some debugging, provide more detailed error
|
||||
messages, update memory accesses to use LOADDRMASK.
|
||||
|
||||
Mon Jun 3 11:55:03 1996 Ian Lance Taylor <ian@cygnus.com>
|
||||
|
||||
* configure.in: Add calls to AC_CONFIG_HEADER, AC_CHECK_HEADERS,
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
dnl Process this file with autoconf to produce a configure script.
|
||||
AC_PREREQ(2.3)dnl
|
||||
AC_PREREQ(2.5)dnl
|
||||
AC_INIT(Makefile.in)
|
||||
|
||||
AC_CONFIG_HEADER(config.h:config.in)
|
||||
|
@ -7,10 +7,11 @@ AC_CONFIG_HEADER(config.h:config.in)
|
|||
AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/../..)
|
||||
AC_CANONICAL_SYSTEM
|
||||
AC_ARG_PROGRAM
|
||||
AC_PROG_CC
|
||||
AC_PROG_INSTALL
|
||||
|
||||
. ${srcdir}/../../bfd/configure.host
|
||||
|
||||
AC_PROG_CC
|
||||
AC_SUBST(CFLAGS)
|
||||
AC_SUBST(HDEFINES)
|
||||
AR=${AR-ar}
|
||||
|
|
Loading…
Reference in a new issue