diff options
author | Michael Meissner <gnu@the-meissners.org> | 1995-11-03 03:39:27 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1995-11-03 03:39:27 +0000 |
commit | e61900e6a259570926e289fa8fd22dd3c124d87a (patch) | |
tree | 0c24c537d1922738f4caf58f6bcc3fd01e2f79e5 | |
parent | c494cadde621b6d371d03df79486176c10bea303 (diff) | |
download | gdb-e61900e6a259570926e289fa8fd22dd3c124d87a.zip gdb-e61900e6a259570926e289fa8fd22dd3c124d87a.tar.gz gdb-e61900e6a259570926e289fa8fd22dd3c124d87a.tar.bz2 |
Update dependencies; Fix multiple options in --enable-sim-cflags
-rw-r--r-- | sim/ppc/ChangeLog | 2 | ||||
-rw-r--r-- | sim/ppc/Makefile.in | 8 | ||||
-rw-r--r-- | sim/ppc/configure.in | 2 |
3 files changed, 7 insertions, 5 deletions
diff --git a/sim/ppc/ChangeLog b/sim/ppc/ChangeLog index 3fdef42..58cb18f 100644 --- a/sim/ppc/ChangeLog +++ b/sim/ppc/ChangeLog @@ -1,5 +1,7 @@ Thu Nov 2 08:54:04 1995 Michael Meissner <meissner@tiktok.cygnus.com> + * Makefile.in: Uncomment built file dependencies. + * configure.in: Rewrite --enable-sim switch handling to use the autoconf builtins so it works correctly if the configure or Makefile.in files are modified and make decides to rebuild diff --git a/sim/ppc/Makefile.in b/sim/ppc/Makefile.in index 58607be..e720458 100644 --- a/sim/ppc/Makefile.in +++ b/sim/ppc/Makefile.in @@ -338,10 +338,10 @@ tmp-igen: igen ppc-instructions $(IGEN_OPCODE_RULES) ppc-cache-rules $(srcdir)/. # NOTE: Some versions of make don't handle files created as side-effects # uncomment the below if that is the case. -# -# $(TARGETLIB): tmp-igen tmp-dgen -# itable.h itable.c icache.h idecode.h idecode.c semantics.h semantics.c: tmp-igen -# spreg.h spreg.c: tmp-dgen + +$(TARGETLIB): tmp-igen tmp-dgen +itable.h itable.c icache.h idecode.h idecode.c semantics.h semantics.c: tmp-igen +spreg.h spreg.c: tmp-dgen dgen: dgen.o table.o lf.o misc.o filter_filename.o $(CC_FOR_BUILD) $(CFLAGS) $(LDFLAGS) -o dgen dgen.o table.o lf.o misc.o filter_filename.o $(LIBIBERTY_LIB) $(LIBS) diff --git a/sim/ppc/configure.in b/sim/ppc/configure.in index a3c1f39..04beaaf 100644 --- a/sim/ppc/configure.in +++ b/sim/ppc/configure.in @@ -7,7 +7,7 @@ AC_ARG_ENABLE(sim-cflags, [case "${enableval}" in yes) sim_cflags="-O2 -fomit-frame-pointer";; no) sim_cflags="";; - *) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /"`;; + *) sim_cflags=`echo "${enableval}" | sed -e "s/,/ /g"`;; esac],[sim_cflags=""])dnl AC_ARG_ENABLE(sim-config, |