summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libcpu/mips/Makefile.am
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-03-09 16:45:56 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-03-13 08:05:39 +0100
commitb6755affc05466a49e684c316ea6e6f00c21c370 (patch)
tree25f341de3fb53195fe8341fb9e5779eed63e1db5 /c/src/lib/libcpu/mips/Makefile.am
parentbsps/mips: Remove Mongoose-V README (diff)
downloadrtems-b6755affc05466a49e684c316ea6e6f00c21c370.tar.bz2
bsps/mips: Move libcpu content to bsps
This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to 'c/src/lib/libcpu/mips/Makefile.am')
-rw-r--r--c/src/lib/libcpu/mips/Makefile.am48
1 files changed, 0 insertions, 48 deletions
diff --git a/c/src/lib/libcpu/mips/Makefile.am b/c/src/lib/libcpu/mips/Makefile.am
deleted file mode 100644
index 8ae999dd28..0000000000
--- a/c/src/lib/libcpu/mips/Makefile.am
+++ /dev/null
@@ -1,48 +0,0 @@
-ACLOCAL_AMFLAGS = -I ../../../aclocal
-
-include $(top_srcdir)/../../../automake/compile.am
-
-EXTRA_DIST =
-
-noinst_PROGRAMS =
-
-## interrupts
-
-if rm52xx
-interrupts_CPPFLAGS = -DRM52XX
-endif
-
-if tx39
-interrupts_CPPFLAGS = -DTX39
-endif
-
-if tx49
-interrupts_CPPFLAGS = -DTX49
-endif
-
-noinst_PROGRAMS += shared/interrupts.rel
-shared_interrupts_rel_SOURCES = shared/interrupts/installisrentries.c \
- shared/interrupts/isr_entries.S shared/interrupts/isr_entries.h
-shared_interrupts_rel_CPPFLAGS = $(AM_CPPFLAGS) $(interrupts_CPPFLAGS)
-shared_interrupts_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-if tx39
-endif
-
-if tx49
-noinst_PROGRAMS += tx49/timer.rel
-tx49_timer_rel_SOURCES = timer/timer.c timer/gettime.S
-tx49_timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
-tx49_timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-endif
-
-if au1x00
-endif
-
-if rm52xx
-noinst_PROGRAMS += rm52xx/timer.rel
-rm52xx_timer_rel_SOURCES = timer/timer.c timer/gettime.S
-rm52xx_timer_rel_CPPFLAGS = $(AM_CPPFLAGS)
-rm52xx_timer_rel_LDFLAGS = $(RTEMS_RELLDFLAGS)
-endif
-
-include $(top_srcdir)/../../../automake/local.am