X-Git-Url: http://git.ipfire.org/?a=blobdiff_plain;f=sim%2Ferc32%2FMakefile.in;h=278b4792daeb8e00ce71dfbb7c5ba2a56c02e616;hb=982c3a65ca5dbea8d6de3afd934f0a06fef54383;hp=cf60e235808be17ed9ba0d77fc8830a723ff6716;hpb=9b254dd1ce46c19dde1dde5b8d1e22e862dfacce;p=thirdparty%2Fbinutils-gdb.git diff --git a/sim/erc32/Makefile.in b/sim/erc32/Makefile.in index cf60e235808..278b4792dae 100644 --- a/sim/erc32/Makefile.in +++ b/sim/erc32/Makefile.in @@ -1,5 +1,5 @@ # Makefile template for Configure for the erc32sim library. -# Copyright (C) 1993, 1996, 1997, 2007, 2008 Free Software Foundation, Inc. +# Copyright (C) 1993-2021 Free Software Foundation, Inc. # Written by Cygnus Support # Modified by J.Gaisler ESA/ESTEC # @@ -19,43 +19,43 @@ ## COMMON_PRE_CONFIG_FRAG TERMCAP_LIB = @TERMCAP@ + +READLINE_SRC = $(srcroot)/readline/readline READLINE_LIB = @READLINE@ +READLINE_CFLAGS = @READLINE_CFLAGS@ SIM_OBJS = exec.o erc32.o func.o help.o float.o interf.o +SIM_RUN_OBJS = sis.o +SIM_EXTRA_CFLAGS = $(READLINE_CFLAGS) SIM_EXTRA_LIBS = $(READLINE_LIB) $(TERMCAP_LIB) -lm -SIM_EXTRA_ALL = sis SIM_EXTRA_INSTALL = install-sis SIM_EXTRA_CLEAN = clean-sis # UARTS run at about 115200 baud (simulator time). Add -DFAST_UART to # CFLAGS if faster (infinite) UART speed is desired. Might affect the # behaviour of UART interrupt routines ... -SIM_EXTRA_CFLAGS = -DSTAT -DFAST_UART -DIUREV0 -DMECREV0 +SIM_EXTRA_CFLAGS += -DFAST_UART -I$(srcroot) + +# Code doesn't build cleanly yet. +SIM_WERROR_CFLAGS = ## COMMON_POST_CONFIG_FRAG # `sis' doesn't need interf.o. SIS_OFILES = exec.o erc32.o func.o help.o float.o -sis: sis.o $(SIS_OFILES) $(COMMON_OBJS) $(LIBDEPS) - $(CC) $(ALL_CFLAGS) -o sis \ +all: sis$(EXEEXT) +sis$(EXEEXT): sis.o $(SIS_OFILES) $(COMMON_OBJS) $(LIBDEPS) + $(CC) $(ALL_CFLAGS) -o sis$(EXEEXT) \ 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) $(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..." @@ -64,11 +64,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