sim: build: add uninstall support
[binutils-gdb.git] / sim / common / Make-common.in
index 5d8ac910af21873c92ea42cd10b5cc3b750d3aaf..2cdf357d8818304ed40961e8612b9055d8d80a38 100644 (file)
@@ -1,5 +1,5 @@
 # Makefile fragment for common parts of all simulators.
-# Copyright 1997-2019 Free Software Foundation, Inc.
+# Copyright 1997-2022 Free Software Foundation, Inc.
 # Contributed by Cygnus Support.
 
 # This program is free software; you can redistribute it and/or modify
 
 ## COMMON_PRE_CONFIG_FRAG
 
-VPATH = @srcdir@:$(srccom)
-srcdir = @srcdir@
+srcdir = @abs_srcdir@
+VPATH = $(srcdir):$(srccom)
 srccom = $(srcdir)/../common
 srcroot = $(srcdir)/../..
 srcsim = $(srcdir)/..
 
-prefix = @prefix@
-exec_prefix = @exec_prefix@
+@SIM_COMMON_BUILD_FALSE@config.status = config.status
+@SIM_COMMON_BUILD_TRUE@config.status = ../config.status
 
-host_alias = @host_alias@
-target_alias = @target_alias@
-program_transform_name = @program_transform_name@
-bindir = @bindir@
+# Settings from top-level configure.
+include ../arch-subdir.mk
 
-libdir = @libdir@
-tooldir = $(libdir)/$(target_alias)
+include $(srcroot)/gdb/silent-rules.mk
 
-datadir = @datadir@
-datarootdir = @datarootdir@
-mandir = @mandir@
-man1dir = $(mandir)/man1
-infodir = @infodir@
-includedir = @includedir@
+ifeq ($(V),0)
+ECHO_STAMP = @echo "  GEN   "
+ECHO_IGEN  = @echo "  IGEN   $(<F)";
+else
+ECHO_STAMP = @:
+endif
+
+# Helper code from gnulib.
+GNULIB_PARENT_DIR = ../..
+include $(GNULIB_PARENT_DIR)/gnulib/Makefile.gnulib.inc
 
-lt_cv_dlopen_libs = @lt_cv_dlopen_libs@
 # This can be referenced by the gettext configuration code.
 top_builddir = ..
 
-EXEEXT = @EXEEXT@
 SHELL = @SHELL@
 
-INSTALL = @INSTALL@
-INSTALL_PROGRAM = @INSTALL_PROGRAM@
-INSTALL_DATA = @INSTALL_DATA@
-
-CC = @CC@
-CC_FOR_BUILD = @CC_FOR_BUILD@
-CFLAGS = @CFLAGS@
-CPPFLAGS = @CPPFLAGS@
-CXXFLAGS = @CXXFLAGS@
-LDFLAGS = @LDFLAGS@
-
-SIM_ALIGNMENT = @sim_alignment@
 SIM_BITSIZE = @sim_bitsize@
-SIM_DEFAULT_MODEL = @sim_default_model@
-SIM_ENDIAN = @sim_endian@
 SIM_FLOAT = @sim_float@
-SIM_HW_CFLAGS = @sim_hw_cflags@
-SIM_HW_OBJS = @sim_hw_objs@
-SIM_HW = @sim_hw@
-SIM_INLINE = @sim_inline@
-SIM_RESERVED_BITS = @sim_reserved_bits@
-SIM_SCACHE = @sim_scache@
-WARN_CFLAGS = @WARN_CFLAGS@
-WERROR_CFLAGS = @WERROR_CFLAGS@
 SIM_WARN_CFLAGS = $(WARN_CFLAGS)
 SIM_WERROR_CFLAGS = $(WERROR_CFLAGS)
 
-HDEFINES = @HDEFINES@
-TDEFINES =
-
-AR = @AR@
-AR_FLAGS = rc
-RANLIB = @RANLIB@
-MAKEINFO = makeinfo
-
 # Dependency tracking information.
-DEPMODE = @CCDEPMODE@
-DEPDIR = @DEPDIR@
 depcomp = $(SHELL) $(srcroot)/depcomp
 
 # Note that these are overridden by GNU make-specific code below if
 # GNU make is used.  The overrides implement dependency tracking.
-COMPILE.pre = $(CC)
+COMPILE.pre = $(CC) $(C_DIALECT)
 COMPILE.post = -c -o $@
-COMPILE = $(COMPILE.pre) $(ALL_CFLAGS) $(COMPILE.post)
+COMPILE = $(ECHO_CC) $(COMPILE.pre) $(ALL_CFLAGS) $(COMPILE.post)
 POSTCOMPILE = @true
 
+# igen leaks memory, and therefore makes AddressSanitizer unhappy.  Disable
+# leak detection while running it.
+IGEN = ../igen/igen$(EXEEXT)
+IGEN_RUN = ASAN_OPTIONS=detect_leaks=0 $(IGEN)
+
 # Each simulator's Makefile.in defines one or more of these variables
 # to override our settings as necessary.  There is no need to define these
 # in the simulator's Makefile.in if one is using the default value.  In fact
@@ -126,14 +98,8 @@ SIM_EXTRA_DEPS =
 SIM_EXTRA_CFLAGS =
 # List of extra libraries to link with.
 SIM_EXTRA_LIBS =
-# List of extra program dependencies.
-SIM_EXTRA_LIBDEPS =
 # List of main object files for `run'.
 SIM_RUN_OBJS = nrun.o
-# Dependency of `all' to build any extra files.
-SIM_EXTRA_ALL =
-# Dependency of `install' to install any extra files.
-SIM_EXTRA_INSTALL =
 # Dependency of `clean' to clean any extra files.
 SIM_EXTRA_CLEAN =
 # Likewise `distclean'
@@ -176,7 +142,6 @@ SIM_NEW_COMMON_OBJS = \
        sim-hrw.o \
        sim-io.o \
        sim-info.o \
-       sim-load.o \
        sim-memopt.o \
        sim-model.o \
        sim-module.o \
@@ -193,297 +158,171 @@ SIM_NEW_COMMON_OBJS = \
        \
        $(SIM_HW_OBJS) \
 
-# cgen-sim.h and the headers it includes
-CGEN_SIM_DEPS = \
-       $(srccom)/cgen-sim.h \
-       $(srccom)/cgen-defs.h \
-       $(srccom)/cgen-scache.h \
-       $(srccom)/cgen-fpu.h \
-       $(srccom)/cgen-par.h \
-       $(srccom)/cgen-cpu.h \
-       $(srccom)/cgen-trace.h \
-       cpuall.h
-
-# Add this to SIM_EXTRA_DEPS.
-CGEN_INCLUDE_DEPS = \
-       $(CGEN_SIM_DEPS) \
-       $(srccom)/cgen-engine.h \
-       $(srccom)/cgen-types.h \
-       $(srcdir)/../../include/opcode/cgen.h
-
 ## End COMMON_PRE_CONFIG_FRAG
 
 ## COMMON_POST_CONFIG_FRAG
 
 CONFIG_CFLAGS = \
-       @DEFS@ \
-       $(SIM_DEFAULT_MODEL) \
-       $(SIM_ALIGNMENT) \
+       -DHAVE_CONFIG_H \
        $(SIM_BITSIZE) \
-       $(SIM_ENDIAN) \
        $(SIM_FLOAT) \
        $(SIM_HW_CFLAGS) \
        $(SIM_INLINE) \
-       $(SIM_RESERVED_BITS) \
-       $(SIM_SCACHE) \
        $(SIM_WARN_CFLAGS) \
-       $(SIM_WERROR_CFLAGS) \
-       $(SIM_HARDWARE) \
-       $(SIM_EXTRA_CFLAGS) \
-       $(HDEFINES) $(TDEFINES)
-CSEARCH = -I. -I$(srcdir) -I../common -I$(srccom) \
-  -I../../include -I$(srcroot)/include \
+       $(SIM_WERROR_CFLAGS)
+CSEARCH = -I. -I$(srcdir) -I$(srccom) \
+  -I$(srcroot)/include \
   -I../../bfd -I$(srcroot)/bfd \
-  -I../../opcodes -I$(srcroot)/opcodes \
-  @INCINTL@
-ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(CFLAGS)
-BUILD_CFLAGS = -g -O $(CSEARCH)
+  -I$(srcroot)/opcodes \
+  -I../..
+ALL_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(INCGNU) $(SIM_EXTRA_CFLAGS) $(CFLAGS)
+BUILD_CFLAGS = $(CFLAGS_FOR_BUILD) $(CSEARCH)
+
+COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH) $(SIM_EXTRA_CFLAGS)
 
-COMMON_DEP_CFLAGS = $(CONFIG_CFLAGS) $(CSEARCH)
+SIM_HW_DEVICES = cfi core pal glue $(SIM_EXTRA_HW_DEVICES)
 
-ZLIB = @zlibdir@ -lz
 LIBIBERTY_LIB = ../../libiberty/libiberty.a
-BFD_LIB = ../../bfd/libbfd.a
-@PLUGINS_TRUE@LIBDL = @lt_cv_dlopen_libs@
-OPCODES_LIB = ../../opcodes/libopcodes.a
-LIBINTL = @LIBINTL@
-LIBINTL_DEP = @LIBINTL_DEP@
-CONFIG_LIBS = @LIBS@ $(ZLIB)
-LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL_DEP) $(LIBIBERTY_LIB) \
-       $(SIM_EXTRA_LIBDEPS)
-EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBINTL) $(LIBIBERTY_LIB) \
-       $(CONFIG_LIBS) $(SIM_EXTRA_LIBS) $(LIBDL)
-
-LIB_OBJS = callback.o syscall.o targ-map.o version.o $(SIM_OBJS)
+BFD_LIB = ../../bfd/libbfd.la
+OPCODES_LIB = ../../opcodes/libopcodes.la
+LIBDEPS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB)
+EXTRA_LIBS = $(BFD_LIB) $(OPCODES_LIB) $(LIBIBERTY_LIB) \
+       $(COMMON_LIBS) $(SIM_EXTRA_LIBS) $(LIBGNU) $(LIBGNU_EXTRA_LIBS)
+
+COMMON_OBJS_NAMES = \
+       callback.o \
+       portability.o \
+       sim-load.o \
+       syscall.o \
+       target-newlib-errno.o \
+       target-newlib-open.o \
+       target-newlib-signal.o \
+       target-newlib-syscall.o \
+       version.o
+COMMON_OBJS = $(COMMON_OBJS_NAMES:%=../common/%)
 
-RUNTESTFLAGS =
+LIB_OBJS = modules.o $(COMMON_OBJS) $(SIM_OBJS)
 
-callback_h = $(srcroot)/include/gdb/callback.h
-remote_sim_h = $(srcroot)/include/gdb/remote-sim.h
+COMPILE_FOR_BUILD = $(CC_FOR_BUILD) $(BUILD_CFLAGS)
+LINK_FOR_BUILD = $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(LDFLAGS_FOR_BUILD) -o $@
 
-all: $(SIM_EXTRA_ALL) libsim.a run$(EXEEXT) .gdbinit
+RUNTESTFLAGS =
+
+all: libsim.a run$(EXEEXT)
 
 libsim.a: $(LIB_OBJS)
-       rm -f libsim.a
-       $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
-       $(RANLIB) libsim.a
+       $(SILENCE) rm -f libsim.a
+       $(ECHO_AR) $(AR) $(AR_FLAGS) libsim.a $(LIB_OBJS)
+       $(ECHO_RANLIB) $(RANLIB) libsim.a
 
 run$(EXEEXT): $(SIM_RUN_OBJS) libsim.a $(LIBDEPS)
-       $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
+       $(ECHO_CCLD) $(LIBTOOL) $(AM_V_lt) --tag=CC --mode=link \
+         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o run$(EXEEXT) \
          $(SIM_RUN_OBJS) libsim.a $(EXTRA_LIBS)
 
-# FIXME: Ideally, callback.o and friends live in a library outside of
-# both the gdb and simulator source trees (e.g. devo/remote.  Not
-# devo/libremote because this directory would contain more than just
-# a library).
-
-gentmap: Makefile $(srccom)/gentmap.c $(srccom)/nltvals.def
-       $(CC_FOR_BUILD) $(srccom)/gentmap.c -o gentmap $(BUILD_CFLAGS) $(NL_TARGET)
-
-targ-vals.h targ-map.c: stamp-tvals
-stamp-tvals: gentmap
-       rm -f tmp-tvals.h tmp-tmap.c
-       ./gentmap -h >tmp-tvals.h
-       $(SHELL) $(srcroot)/move-if-change tmp-tvals.h targ-vals.h
-       ./gentmap -c >tmp-tmap.c
-       $(SHELL) $(srcroot)/move-if-change tmp-tmap.c targ-map.c
-       touch stamp-tvals
-
-version.c: Makefile $(srcroot)/gdb/version.in $(srcroot)/bfd/version.h $(srcroot)/sim/common/create-version.sh
-       $(SHELL) $(srcroot)/sim/common/create-version.sh $(srcroot)/gdb \
-           $(host_alias) $(target_alias) version.c
-
-#
-# Rules for building sim-* components.  Triggered by listing the corresponding
-# .o file in the list of simulator targets.
-#
-
-sim_main_headers = \
-       sim-main.h \
-       $(sim-assert_h) \
-       $(sim-base_h) \
-       $(sim-cpu_h) \
-       $(sim-engine_h) \
-       $(sim-events_h) \
-       $(sim-memopt_h) \
-       $(sim-model_h) \
-       $(sim-module_h) \
-       $(sim-profile_h) \
-       $(sim-trace_h) \
-       $(sim-watch_h) \
-       $(sim-basics_h) \
-       $(SIM_EXTRA_DEPS)
-
-# Exported version of sim_main_headers.
-SIM_MAIN_DEPS = \
-       $(sim_main_headers)
-
-sim-alu_h = $(srccom)/sim-alu.h
-sim-arange_h = $(srccom)/sim-arange.h
-sim-assert_h = $(srccom)/sim-assert.h
-sim-base_h = $(srccom)/sim-base.h \
-               $(sim-module_h) \
-               $(sim-trace_h) \
-               $(sim-core_h) \
-               $(sim-events_h) \
-               $(sim-profile_h) \
-               $(sim-model_h) \
-               $(sim-io_h) \
-               $(sim-engine_h) \
-               $(sim-watch_h) \
-               $(sim-memopt_h) \
-               $(sim-cpu_h)
-sim-basics_h = $(srccom)/sim-basics.h \
-               $(sim-config_h) \
-               $(callback_h) \
-               $(sim-inline_h) \
-               $(sim-types_h) \
-               $(sim-bits_h) \
-               $(sim-endian_h) \
-               $(sim-signal_h) \
-               $(sim-arange_h) \
-               $(sim-utils_h)
-sim-bits_h = $(srccom)/sim-bits.h \
-               $(srccom)/sim-bits.c
-sim-config_h = $(srccom)/sim-config.h
-sim-core_h = $(srccom)/sim-core.h
-sim-cpu_h = $(srccom)/sim-cpu.h
-sim-endian_h = $(srccom)/sim-endian.h \
-               $(srccom)/sim-endian.c
-sim-engine_h = $(srccom)/sim-engine.h
-sim-events_h = $(srccom)/sim-events.h
-sim-fpu_h = $(srccom)/sim-fpu.h
-sim-hw_h = $(srccom)/sim-hw.h
-sim-inline_h = $(srccom)/sim-inline.h
-sim-io_h = $(srccom)/sim-io.h
-sim-memopt_h = $(srccom)/sim-memopt.h
-sim-model_h = $(srccom)/sim-model.h
-sim-module_h = $(srccom)/sim-module.h
-sim-n-bits_h = $(srccom)/sim-n-bits.h
-sim-n-core_h = $(srccom)/sim-n-core.h
-sim-n-endian_h = $(srccom)/sim-n-endian.h
-sim-options_h = $(srccom)/sim-options.h
-sim-profile_h = $(srccom)/sim-profile.h
-sim-signal_h = $(srccom)/sim-signal.h
-sim-trace_h = $(srccom)/sim-trace.h
-sim-types_h = $(srccom)/sim-types.h
-sim-utils_h = $(srccom)/sim-utils.h
-sim-watch_h = $(srccom)/sim-watch.h
-
-hw-alloc_h = $(srccom)/hw-alloc.h
-hw-base_h = $(srccom)/hw-base.h
-hw-device_h = $(srccom)/hw-device.h
-hw-events_h = $(srccom)/hw-events.h
-hw-handles_h = $(srccom)/hw-handles.h
-hw-instances_h = $(srccom)/hw-instances.h
-hw-ports_h = $(srccom)/hw-ports.h
-hw-properties_h = $(srccom)/hw-properties.h
-hw-tree_h = $(srccom)/hw-tree.h
-
-hw_main_headers = \
-       $(srccom)/hw-main.h \
-       $(hw-alloc_h) \
-       $(hw-base_h) \
-       $(hw-device_h) \
-       $(hw-events_h) \
-       $(hw-instances_h) \
-       $(hw-handles_h) \
-       $(hw-ports_h) \
-       $(hw-properties_h) \
-
 #
 # Dependency tracking.  Most of this is conditional on GNU Make being
 # found by configure; if GNU Make is not found, we fall back to a
 # simpler scheme.
 #
 
-@GMAKE_TRUE@ifeq ($(DEPMODE),depmode=gcc3)
+ifeq ($(DEPMODE),depmode=gcc3)
 # Note that we put the dependencies into a .Tpo file, then move them
 # into place if the compile succeeds.  We need this because gcc does
 # not atomically write the dependency output file.
-@GMAKE_TRUE@override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
-@GMAKE_TRUE@   -MF $(DEPDIR)/$(basename $(@F)).Tpo
-@GMAKE_TRUE@override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
-@GMAKE_TRUE@   $(DEPDIR)/$(basename $(@F)).Po
-@GMAKE_TRUE@else
-@GMAKE_TRUE@override COMPILE.pre = source='$<' object='$@' libtool=no \
-@GMAKE_TRUE@   DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
+override COMPILE.post = -c -o $@ -MT $@ -MMD -MP \
+       -MF $(DEPDIR)/$(basename $(@F)).Tpo
+override POSTCOMPILE = @mv $(DEPDIR)/$(basename $(@F)).Tpo \
+       $(DEPDIR)/$(basename $(@F)).Po
+else
+override COMPILE.pre = source='$<' object='$@' libtool=no \
+       DEPDIR=$(DEPDIR) $(DEPMODE) $(depcomp) $(CC)
 # depcomp handles atomicity for us, so we don't need a postcompile
 # step.
-@GMAKE_TRUE@override POSTCOMPILE =
-@GMAKE_TRUE@endif
+override POSTCOMPILE =
+endif
 
 all_object_files = $(LIB_OBJS) $(SIM_RUN_OBJS)
 generated_files = \
        $(SIM_EXTRA_DEPS) \
        hw-config.h \
-       targ-map.c \
-       targ-vals.h \
-       version.c
+       modules.c
 
 # Ensure that generated files are created early.  Use order-only
 # dependencies if available.  They require GNU make 3.80 or newer,
 # and the .VARIABLES variable was introduced at the same time.
-@GMAKE_TRUE@ifdef .VARIABLES
-@GMAKE_TRUE@$(all_object_files): | $(generated_files)
-@GMAKE_TRUE@else
+ifdef .VARIABLES
+$(all_object_files): | $(generated_files)
+else
 $(all_object_files) : $(generated_files)
-@GMAKE_TRUE@endif
+endif
 
 # Dependencies.
-@GMAKE_TRUE@-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
+-include $(patsubst %.o, $(DEPDIR)/%.Po, $(all_object_files))
 
 # FIXME This is one very simple-minded way of generating the file hw-config.h
-hw-config.h: Makefile.in $(srccom)/Make-common.in config.status Makefile
-       rm -f tmp-hw.h
-       echo "/* generated by Makefile */" > tmp-hw.h
-       sim_hw="$(SIM_HW)"; \
-       for hw in $$sim_hw ; do \
-         echo "extern const struct hw_descriptor dv_$${hw}_descriptor[];" ; \
-       done >> tmp-hw.h
-       echo "const struct hw_descriptor *hw_descriptors[] = {" >> tmp-hw.h
-       sim_hw="$(SIM_HW)"; \
-       for hw in $$sim_hw ; do \
-         echo "  dv_$${hw}_descriptor," ; \
-       done >> tmp-hw.h
-       echo "  NULL," >> tmp-hw.h
-       echo "};" >> tmp-hw.h
-       mv tmp-hw.h hw-config.h
+hw-config.h: stamp-hw ; @true
+stamp-hw: Makefile.in $(srccom)/Make-common.in $(config.status) Makefile
+       $(ECHO_STAMP) hw-config.h
+       $(SILENCE) ( \
+       sim_hw="$(SIM_HW_DEVICES)" ; \
+       echo "/* generated by Makefile */" ; \
+       printf "extern const struct hw_descriptor dv_%s_descriptor[];\n" $$sim_hw ; \
+       echo "const struct hw_descriptor * const hw_descriptors[] = {" ; \
+       printf "  dv_%s_descriptor,\n" $$sim_hw ; \
+       echo "  NULL," ; \
+       echo "};" \
+       ) > tmp-hw.h
+       $(SILENCE) $(SHELL) $(srcroot)/move-if-change tmp-hw.h hw-config.h
+       $(SILENCE) touch $@
 
 test-hw-events: $(srccom)/hw-events.c libsim.a
-       $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
+       $(ECHO_CCLD) $(LIBTOOL) $(AM_V_lt) --tag=CC --mode=link \
+               $(CC) $(ALL_CFLAGS) -DMAIN -o test-hw-events$(EXEEXT) \
                $(srccom)/hw-events.c libsim.a $(EXTRA_LIBS)
 
-# CGEN support.
-
-# For use in Makefile.in for cpu-specific files.
-CGEN_MAIN_CPU_DEPS = \
-       $(SIM_MAIN_DEPS) \
-       $(srccom)/cgen-ops.h \
-       $(srccom)/cgen-mem.h
+# See sim_pre_argv_init and sim_module_install in sim-module.c for more details.
+modules.c: stamp-modules ; @true
+stamp-modules: Makefile $(SIM_OBJS:.o=.c)
+       $(ECHO_STAMP) modules.c
+       $(SILENCE) LANG=C ; export LANG ; \
+       LC_ALL=C ; export LC_ALL ; \
+       sed -n -e '/^sim_install_/{s/^\(sim_install_[a-z_0-9A-Z]*\).*/\1/;p}' $^ | sort >$@.l-tmp
+       @set -e; (\
+       echo '/* Do not modify this file.  */'; \
+       echo '/* It is created automatically by the Makefile.  */'; \
+       echo '#include "libiberty.h"'; \
+       echo '#include "sim-module.h"'; \
+       sed -e 's:\(.*\):extern MODULE_INIT_FN \1;:' $@.l-tmp; \
+       echo 'MODULE_INSTALL_FN * const sim_modules_detected[] = {'; \
+       sed -e 's:\(.*\):  \1,:' $@.l-tmp; \
+       echo '};'; \
+       echo 'const int sim_modules_detected_len = ARRAY_SIZE (sim_modules_detected);'; \
+       ) >$@.tmp
+       $(SILENCE) $(SHELL) $(srcroot)/move-if-change $@.tmp modules.c
+       $(SILENCE) rm -f $@.l-tmp $@.tmp
+       $(SILENCE) touch $@
 
 # Support targets.
 
-install: install-common $(SIM_EXTRA_INSTALL)
-
-install-common: installdirs
-       n=`echo run | sed '$(program_transform_name)'`; \
-       $(INSTALL_PROGRAM) run$(EXEEXT) $(DESTDIR)$(bindir)/$$n$(EXEEXT)
-       n=`echo libsim.a | sed s/libsim.a/lib$(target_alias)-sim.a/`; \
-       $(INSTALL_DATA) libsim.a $(DESTDIR)$(libdir)/$$n ; \
-       ( cd $(DESTDIR)$(libdir) ; $(RANLIB) $$n )
-
+install:
 installdirs:
-       $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(bindir)
-       $(SHELL) $(srcdir)/../../mkinstalldirs $(DESTDIR)$(libdir)
+uninstall:
 
 check:
-       cd ../testsuite && $(MAKE) check RUNTESTFLAGS="$(RUNTESTFLAGS)"
+
+html:
+clean-html:
+install-html:
 
 info:
 clean-info:
 install-info:
 
+pdf:
+clean-pdf:
+install-pdf:
+
 .NOEXPORT:
 MAKEOVERRIDES=
 
@@ -496,19 +335,16 @@ TAGS: force
        etags --regex '/^\([[:lower:]_]+\) (/\1/' --regex '/^\/[*] TAGS: .*/' \
                *.[ch] ../common/*.[ch]
 
-clean: $(SIM_EXTRA_CLEAN)
-       rm -f *.[oa] *~ core
-       rm -f run$(EXEEXT) libsim.a
-       rm -f gentmap targ-map.c targ-vals.h stamp-tvals
-       if [ ! -f Make-common.in ] ; then \
-               rm -f $(BUILT_SRC_FROM_COMMON) ; \
-       fi
-       rm -f tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
+mostlyclean clean: $(SIM_EXTRA_CLEAN)
+       rm -f *.[oa] *~ core \
+               run$(EXEEXT) libsim.a \
+               hw-config.h stamp-hw \
+               modules.c stamp-modules \
+               tmp-mloop.hin tmp-mloop.h tmp-mloop.cin tmp-mloop.c
 
-distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
+distclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
        rm -f TAGS
-       rm -f Makefile config.cache config.log config.status .gdbinit
-       rm -f config.h stamp-h
+       rm -f Makefile config.cache config.log config.status
 
 .c.o:
        $(COMPILE) $<
@@ -517,24 +353,19 @@ distclean mostlyclean maintainer-clean realclean: clean $(SIM_EXTRA_DISTCLEAN)
 # Dummy target to force execution of dependent targets.
 force:
 
-Makefile: Makefile.in $(srccom)/Make-common.in config.status
-       CONFIG_HEADERS= $(SHELL) ./config.status
-
-config.status: configure
-       $(SHELL) ./config.status --recheck
-
-config.h: stamp-h ; @true
-stamp-h: config.in config.status
-       CONFIG_FILES= CONFIG_HEADERS=config.h:config.in $(SHELL) ./config.status
+Makefile: Makefile.in $(srccom)/Make-common.in $(config.status)
+@SIM_COMMON_BUILD_FALSE@       $(ECHO_GEN) CONFIG_HEADERS= $(SHELL) ./config.status
+@SIM_COMMON_BUILD_TRUE@        $(ECHO_GEN) pwd=`pwd` && subdir=`basename "$$pwd"` && cd .. && \
+@SIM_COMMON_BUILD_TRUE@                $(SHELL) ./config.status Make-common.sim $$subdir/Makefile.sim $$subdir/Makefile
 
-.gdbinit: # config.status $(srccom)/gdbinit.in
-       CONFIG_FILES=$@:../common/gdbinit.in CONFIG_HEADERS= $(SHELL) ./config.status
+@SIM_COMMON_BUILD_FALSE@config.status: configure
+@SIM_COMMON_BUILD_FALSE@       $(ECHO_GEN) $(SHELL) ./config.status --recheck
 
 
 # CGEN support
 
-CGENDIR = @cgendir@
-CGEN = "`if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi` -l $(CGENDIR)/guile.scm -s"
+GUILE = `if [ -f ../../guile/libguile/guile ]; then echo ../../guile/libguile/guile; else echo guile ; fi`
+CGEN = "$(GUILE) -l $(CGENDIR)/guile.scm -s"
 CGENFLAGS = -v
 CGEN_CPU_DIR = $(CGENDIR)/cpu