diff options
author | Andrew Cagney <cagney@redhat.com> | 1997-09-23 01:25:26 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 1997-09-23 01:25:26 +0000 |
commit | 92f91d1ff0df74b6ef05c908028461d97735ad9f (patch) | |
tree | d8397d333bec034df3bece79d36a755fa8718716 /sim/mips/Makefile.in | |
parent | 166d7e5549bbc71127a6d1521f9725fd5d56e239 (diff) | |
download | gdb-92f91d1ff0df74b6ef05c908028461d97735ad9f.zip gdb-92f91d1ff0df74b6ef05c908028461d97735ad9f.tar.gz gdb-92f91d1ff0df74b6ef05c908028461d97735ad9f.tar.bz2 |
Remove need to update <targ>/Makefile.in when adding optional options
to <targ>/configure.in.
Simplify logic used to select target [default] endianness.
Diffstat (limited to 'sim/mips/Makefile.in')
-rw-r--r-- | sim/mips/Makefile.in | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/sim/mips/Makefile.in b/sim/mips/Makefile.in index e5f97e7..af5128e 100644 --- a/sim/mips/Makefile.in +++ b/sim/mips/Makefile.in @@ -25,18 +25,12 @@ SIM_OBJS = interp.o \ sim-watch.o # List of flags to always pass to $(CC). -SIM_WARNINGS=@sim_warnings@ -SIM_ENDIAN=@sim_endian@ -SIM_HOSTENDIAN=@sim_hostendian@ -SIM_INLINE=@sim_inline@ +SIM_SUBTARGET=@SIM_SUBTARGET@ # FIXME: Hack to find syscall.h? Better support for syscall.h # is in progress. SIM_EXTRA_CFLAGS = \ - $(SIM_WARNINGS) \ - $(SIM_ENDIAN) \ - $(SIM_HOSTENDIAN) \ - $(SIM_INLINE) \ + $(SIM_SUBTARGET) \ -I$(srcdir)/../../newlib/libc/sys/idt SIM_EXTRA_CLEAN = clean-extra |