summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/moxie/moxiesim
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libbsp/moxie/moxiesim')
-rw-r--r--c/src/lib/libbsp/moxie/moxiesim/Makefile.am45
-rw-r--r--c/src/lib/libbsp/moxie/moxiesim/configure.ac34
2 files changed, 0 insertions, 79 deletions
diff --git a/c/src/lib/libbsp/moxie/moxiesim/Makefile.am b/c/src/lib/libbsp/moxie/moxiesim/Makefile.am
deleted file mode 100644
index 46ca404df0..0000000000
--- a/c/src/lib/libbsp/moxie/moxiesim/Makefile.am
+++ /dev/null
@@ -1,45 +0,0 @@
-##
-## $Id: Makefile.am,v 1.36 2008/10/02 21:39:40 joel Exp $
-##
-
-ACLOCAL_AMFLAGS = -I ../../../../aclocal
-
-include $(top_srcdir)/../../../../automake/compile.am
-include $(top_srcdir)/../../bsp.am
-
-dist_project_lib_DATA = ../../../../../../bsps/moxie/moxiesim/start/bsp_specs
-
-
-
-start.$(OBJEXT): ../../../../../../bsps/moxie/moxiesim/start/start.S
- $(CPPASCOMPILE) -o $@ -c $<
-project_lib_DATA = start.$(OBJEXT)
-
-project_lib_DATA += linkcmds
-
-project_lib_LIBRARIES = librtemsbsp.a
-librtemsbsp_a_SOURCES =
-
-# startup
-librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspfatal-default.c
-librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspgetworkarea-default.c
-librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspstart-empty.c
-librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/sbrk.c
-librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/getentropy/getentropy-cpucounter.c
-librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/gettargethash-default.c
-librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/start/bspreset-empty.c
-# clock
-librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/clock/clock-simidle.c
-# console
-librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/serial/console-polled.c
-librtemsbsp_a_SOURCES += ../../../../../../bsps/moxie/moxiesim/console/console-io.c
-librtemsbsp_a_SOURCES += ../../../../../../bsps/moxie/moxiesim/console/syscalls.S
-# timer
-librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/dev/btimer/btimer-stub.c
-
-# Cache
-librtemsbsp_a_SOURCES += ../../../../../../bsps/shared/cache/nocache.c
-
-include $(srcdir)/../../../../../../bsps/shared/irq-default-sources.am
-include $(srcdir)/../../../../../../bsps/shared/shared-sources.am
-include $(srcdir)/../../../../../../bsps/moxie/moxiesim/headers.am
diff --git a/c/src/lib/libbsp/moxie/moxiesim/configure.ac b/c/src/lib/libbsp/moxie/moxiesim/configure.ac
deleted file mode 100644
index b26d0d1088..0000000000
--- a/c/src/lib/libbsp/moxie/moxiesim/configure.ac
+++ /dev/null
@@ -1,34 +0,0 @@
-## Process this file with autoconf to produce a configure script.
-##
-## $Id: configure.ac,v 1.20 2009/11/28 06:28:39 ralf Exp $
-
-AC_PREREQ(2.60)
-AC_INIT([rtems-c-src-lib-libbsp-moxie-moxiesim],[_RTEMS_VERSION],[https://devel.rtems.org/newticket])
-RTEMS_TOP(../../../../../..)
-RTEMS_SOURCE_TOP
-RTEMS_BUILD_TOP
-RTEMS_BSP_LINKCMDS
-
-RTEMS_CANONICAL_TARGET_CPU
-AM_INIT_AUTOMAKE([no-define nostdinc foreign 1.12.2])
-RTEMS_BSP_CONFIGURE
-
-
-RTEMS_BSP_CLEANUP_OPTIONS
-
-AC_MSG_CHECKING([for old moxie assembly syntax])
-AC_COMPILE_IFELSE(
- [AC_LANG_PROGRAM(
- [],
- [asm("sub.l \$r0, \$r0");])],
- [HAVE_OLD_MOXIE_ASM=yes],
- [HAVE_OLD_MOXIE_ASM=no])
-AC_MSG_RESULT([$HAVE_OLD_MOXIE_ASM])
-if test "x$HAVE_OLD_MOXIE_ASM" = xyes; then
- AC_DEFINE(HAVE_OLD_MOXIE_ASM,
- 1, [Define if you are using old moxie asm syntax (sub.l)])
-fi
-
-# Explicitly list all Makefiles here
-AC_CONFIG_FILES([Makefile])
-AC_OUTPUT