diff options
author | Jiri Gaisler <jiri@gaisler.se> | 2015-03-16 01:14:09 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-03-16 01:16:35 -0400 |
commit | 9c5f41df36176d86afa65fc9b69b8fd6f6044547 (patch) | |
tree | 76a3dc2a8f5fff59c7e9a2fd7d3113455fed669e /sim/erc32/Makefile.in | |
parent | a4f851ffab57821a4904a9a28d8503500b77200e (diff) | |
download | gdb-9c5f41df36176d86afa65fc9b69b8fd6f6044547.zip gdb-9c5f41df36176d86afa65fc9b69b8fd6f6044547.tar.gz gdb-9c5f41df36176d86afa65fc9b69b8fd6f6044547.tar.bz2 |
sim/erc32: use SIM_AC_OPTION_HOSTENDIAN to probe for host endianess
Diffstat (limited to 'sim/erc32/Makefile.in')
-rw-r--r-- | sim/erc32/Makefile.in | 18 |
1 files changed, 1 insertions, 17 deletions
diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in index 4e39549..108e8b6 100644 --- a/sim/erc32/Makefile.in +++ b/sim/erc32/Makefile.in @@ -42,21 +42,13 @@ sis: sis.o $(SIS_OFILES) $(COMMON_OBJS) $(LIBDEPS) $(CC) $(ALL_CFLAGS) -o sis \ sis.o $(SIS_OFILES) $(COMMON_OBJS) $(EXTRA_LIBS) -# FIXME: This computes the build host's endianness, doesn't it? -# There is AC_C_BIGENDIAN but it doesn't handle float endianness. -# [Are int/float endians every different on a sparc?] -end: $(srcdir)/end.c - $(CC_FOR_BUILD) -I. $(srcdir)/end.c -o end -end.h: end - ./end > end.h - # Copy the files into directories where they will be run. install-sis: installdirs n=`echo sis | sed '$(program_transform_name)'`; \ $(INSTALL_PROGRAM) sis$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT) clean-sis: - rm -f sis end end.h + rm -f sis configure: @echo "Rebuilding configure..." @@ -65,11 +57,3 @@ configure: else true ; fi ; \ (cd $${srcdir}; autoconf --localdir=../common) -# Circumvent Sun Make bug with VPATH. -erc32.o: erc32.c sis.h end.h -exec.o: exec.c sis.h end.h -float.o: float.c sis.h end.h -func.o: func.c sis.h end.h -help.o: help.c sis.h end.h -interf.o: interf.c sis.h end.h -sis.o: sis.c sis.h end.h |