]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blobdiff - sim/erc32/Makefile.in
Automatic Copyright Year update after running gdb/copyright.py
[thirdparty/binutils-gdb.git] / sim / erc32 / Makefile.in
index 0006922904b17b02646b7af6dbb0143dcc51dd52..786ae1dcc7b58ac44967f3084598008a601e6ef7 100644 (file)
@@ -1,5 +1,5 @@
 #    Makefile template for Configure for the erc32sim library.
-#    Copyright (C) 1993-2021 Free Software Foundation, Inc.
+#    Copyright (C) 1993-2022 Free Software Foundation, Inc.
 #    Written by Cygnus Support
 #    Modified by J.Gaisler ESA/ESTEC
 # 
 
 ## COMMON_PRE_CONFIG_FRAG
 
-TERMCAP_LIB = @TERMCAP@
-READLINE_LIB = @READLINE@
+READLINE_SRC = $(srcroot)/readline/readline
 
 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_INSTALL = install-sis
 SIM_EXTRA_CLEAN = clean-sis
@@ -30,17 +30,20 @@ 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 = -DFAST_UART -I$(srcroot)
+SIM_EXTRA_CFLAGS += -DFAST_UART -I$(srcroot)
+
+# Some modules don't build cleanly yet.
+exec.o: 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
 
-all: sis
-sis: sis.o $(SIS_OFILES) $(COMMON_OBJS) $(LIBDEPS)
-       $(CC) $(ALL_CFLAGS) -o sis \
-         sis.o $(SIS_OFILES) $(COMMON_OBJS) $(EXTRA_LIBS)
+all: sis$(EXEEXT)
+sis$(EXEEXT): sis.o $(SIS_OFILES) libsim.a $(LIBDEPS)
+       $(ECHO_CCLD) $(CC) $(ALL_CFLAGS) -o sis$(EXEEXT) \
+         sis.o $(SIS_OFILES) libsim.a $(EXTRA_LIBS)
 
 # Copy the files into directories where they will be run.
 install-sis: installdirs
@@ -49,11 +52,3 @@ install-sis: installdirs
 
 clean-sis:
        rm -f sis
-
-configure:
-       @echo "Rebuilding configure..."
-       if [ x"${srcdir}" = x"@srcdir@" ] ; then \
-         srcdir=. ; export srcdir ; \
-       else true ; fi ; \
-       (cd $${srcdir}; autoconf --localdir=../common)
-