Manage objfiles with shared_ptr
[deliverable/binutils-gdb.git] / sim / bfin / Makefile.in
index 69b4cca4d895ded3ca5656b014243db7fa465ef8..dd9f1f05004dda02d193ac9924ff7a3043c2af81 100644 (file)
@@ -1,5 +1,5 @@
 #    Makefile template for Configure for the Blackfin simulator.
-#    Copyright (C) 2005-2014 Free Software Foundation, Inc.
+#    Copyright (C) 2005-2019 Free Software Foundation, Inc.
 #    Written by Analog Devices, Inc.
 # 
 # This program is free software; you can redistribute it and/or modify
@@ -20,9 +20,6 @@ NL_TARGET = -DNL_TARGET_bfin
 
 ## COMMON_PRE_CONFIG_FRAG
 
-# List of main object files for `run'.
-SIM_RUN_OBJS = nrun.o
-
 SIM_OBJS = \
        $(SIM_NEW_COMMON_OBJS) \
        bfin-sim.o \
@@ -30,17 +27,7 @@ SIM_OBJS = \
        gui.o \
        interp.o \
        machs.o \
-       sim-cpu.o \
-       sim-engine.o \
-       sim-hload.o \
-       sim-hrw.o \
-       sim-model.o \
-       sim-reason.o \
-       sim-reg.o \
-       sim-resume.o \
-       sim-stop.o \
-       @BFIN_SIM_EXTRA_OBJS@ \
-       $(SIM_EXTRA_OBJS)
+       sim-resume.o
 
 INCLUDE = bfin-sim.h
 
@@ -50,15 +37,16 @@ SIM_EXTRA_LIBS = @SDL_LIBS@ -lm
 ## COMMON_POST_CONFIG_FRAG
 
 $(srcdir)/linux-fixed-code.h: @MAINTAINER_MODE_TRUE@ $(srcdir)/linux-fixed-code.s Makefile.in
-       $(AS_FOR_TARGET) $< -o linux-fixed-code.o
+       $(AS_FOR_TARGET) $(srcdir)/linux-fixed-code.s -o linux-fixed-code.o
        (       set -e; \
                echo "/* DO NOT EDIT: Autogenerated from linux-fixed-code.s.  */"; \
                echo "static const unsigned char bfin_linux_fixed_code[] ="; \
                echo "{"; \
                $(OBJDUMP_FOR_TARGET) -d -z linux-fixed-code.o > $@.dis; \
-               sed -n $@.dis \
+               sed -n \
                        -e 's:^[^       ]*      :0x:' \
-                       -e '/^0x/{s:    .*::;s: *$$:,:;s: :, 0x:g;p}'; \
+                       -e '/^0x/{s:    .*::;s: *$$:,:;s: :, 0x:g;p;}' \
+                       $@.dis; \
                rm -f $@.dis; \
                echo "};" \
        ) > $@.tmp
This page took 0.041524 seconds and 4 git commands to generate.