summaryrefslogtreecommitdiffstats
path: root/make/custom/dmv152.cfg
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2007-05-11 14:02:12 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2007-05-11 14:02:12 +0000
commit50f6753ea24ace2f13afd11bbb857a0bd7c8b517 (patch)
treefba8bbd9664a5dcae179a98b8c7bf3d3ea4ff3b9 /make/custom/dmv152.cfg
parent2007-05-11 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-50f6753ea24ace2f13afd11bbb857a0bd7c8b517.tar.bz2
2007-05-11 Joel Sherrill <joel.sherrill@oarcorp.com>
* Makefile.am: DMV152 obsoleted. * custom/dmv152.cfg: Removed.
Diffstat (limited to '')
-rw-r--r--make/custom/dmv152.cfg42
1 files changed, 0 insertions, 42 deletions
diff --git a/make/custom/dmv152.cfg b/make/custom/dmv152.cfg
deleted file mode 100644
index 2e9a4d2f0f..0000000000
--- a/make/custom/dmv152.cfg
+++ /dev/null
@@ -1,42 +0,0 @@
-#
-# Config file for the dmv152 BSP
-#
-# $Id$
-#
-
-include $(RTEMS_ROOT)/make/custom/default.cfg
-
-RTEMS_CPU=m68k
-RTEMS_CPU_MODEL=m68020
-
-# This is the actual bsp directory used during the build process.
-RTEMS_BSP_FAMILY=dmv152
-
-#
-# This contains the compiler options necessary to select the CPU model
-# and (hopefully) optimize for it.
-#
-
-CPU_CFLAGS =
-
-# optimize flag: typically -O2
-CFLAGS_OPTIMIZE_V = -O2 -g -fomit-frame-pointer
-
-# Here is the rule to actually build a $(ARCH)/foo.exe
-# It also builds $(ARCH)/foo.sr and $(ARCH)/foo.nm
-# Usage ref: src/tests/sptest/sp1/Makefile
-
-# The following are definitions of make-exe which will work using ld as
-# is currently required.
-
-define make-exe
- $(LINK.c) $(AM_CFLAGS) $(AM_LDFLAGS) -o $(basename $@).nxe \
- $(LINK_OBJS) $(LINK_LIBS)
- $(OBJCOPY) -O srec $(basename $@).nxe $(basename $@).srec
- sed -e 's/.$$//' -e '/^S0/d' $(basename $@).srec | \
- $(PACKHEX) > $@
- $(NM) -g -n $(basename $@).nxe > $(basename $@).num
- $(SIZE) $(basename $@).nxe
-endef
-
-# Miscellaneous additions go here