summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--make/custom/Cygwin-posix.cfg18
-rw-r--r--make/custom/FreeBSD-posix.cfg15
-rw-r--r--make/custom/Linux-posix.cfg22
-rw-r--r--make/custom/Solaris-posix.cfg22
-rw-r--r--make/custom/posix.cfg31
5 files changed, 0 insertions, 108 deletions
diff --git a/make/custom/Cygwin-posix.cfg b/make/custom/Cygwin-posix.cfg
deleted file mode 100644
index 54fd199fc6..0000000000
--- a/make/custom/Cygwin-posix.cfg
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# Config file for the Cygwin based RTEMS UNIX
-#
-# $Id$
-#
-
-RTEMS_CPU=unix
-RTEMS_CPU_FAMILY=i386
-RTEMS_CPU_MODEL=i486dx
-RTEMS_UNIX_FLAVOR=cygwin
-
-# This is the actual bsp directory used during the build process.
-RTEMS_BSP_FAMILY=posix
-
-include $(RTEMS_ROOT)/make/custom/default.cfg
-
-# optimize flag: typically -O2
-CFLAGS_OPTIMIZE_V = -O2 -g
diff --git a/make/custom/FreeBSD-posix.cfg b/make/custom/FreeBSD-posix.cfg
deleted file mode 100644
index 5caf201133..0000000000
--- a/make/custom/FreeBSD-posix.cfg
+++ /dev/null
@@ -1,15 +0,0 @@
-#
-# Config file for the FreeBSD 2.x based RTEMS UNIX
-
-RTEMS_CPU=unix
-RTEMS_CPU_FAMILY=i386
-RTEMS_CPU_MODEL=i486dx
-RTEMS_UNIX_FLAVOR=freebsd
-
-# This is the actual bsp directory used during the build process.
-RTEMS_BSP_FAMILY=posix
-
-include $(RTEMS_ROOT)/make/custom/default.cfg
-
-# optimize flag: typically -O2
-CFLAGS_OPTIMIZE_V = -O2 -g
diff --git a/make/custom/Linux-posix.cfg b/make/custom/Linux-posix.cfg
deleted file mode 100644
index d29e44cd73..0000000000
--- a/make/custom/Linux-posix.cfg
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# Config file for the Linux 1.x based RTEMS UNIX
-#
-# $Id$
-#
-
-RTEMS_CPU=unix
-RTEMS_CPU_FAMILY=i386
-RTEMS_CPU_MODEL=i486dx
-RTEMS_UNIX_FLAVOR=linux
-
-# This is the actual bsp directory used during the build process.
-RTEMS_BSP_FAMILY=posix
-
-include $(RTEMS_ROOT)/make/custom/default.cfg
-
-# This contains the compiler options necessary to select the CPU model
-# and (hopefully) optimize for it.
-CPU_CFLAGS = -D_BSD_SOURCE -D_POSIX_C_SOURCE
-
-# optimize flag: typically -O2
-CFLAGS_OPTIMIZE_V = -O0 -g
diff --git a/make/custom/Solaris-posix.cfg b/make/custom/Solaris-posix.cfg
deleted file mode 100644
index 6248b382d0..0000000000
--- a/make/custom/Solaris-posix.cfg
+++ /dev/null
@@ -1,22 +0,0 @@
-#
-# Config file for the Solaris based RTEMS UNIX
-#
-# $Id$
-#
-
-RTEMS_CPU=unix
-RTEMS_CPU_FAMILY=sparc
-RTEMS_CPU_MODEL=sparc_v8
-RTEMS_UNIX_FLAVOR=solaris
-
-# This is the actual bsp directory used during the build process.
-RTEMS_BSP_FAMILY=posix
-
-include $(RTEMS_ROOT)/make/custom/default.cfg
-
-# This contains the compiler options necessary to select the CPU model
-# and (hopefully) optimize for it.
-CPU_CFLAGS += -Dsolaris2 -D__EXTENSIONS__
-
-# optimize flag: typically -O2
-CFLAGS_OPTIMIZE_V = -O2 -g
diff --git a/make/custom/posix.cfg b/make/custom/posix.cfg
deleted file mode 100644
index 805427f8ed..0000000000
--- a/make/custom/posix.cfg
+++ /dev/null
@@ -1,31 +0,0 @@
-#
-# Config file for the posix based RTEMS
-#
-# $Id$
-#
-
-# Set them here, otherwise gcc-target-default.cfg will set them to values
-# not working on some os variants (linux-RH5.0, glibc versions 2.0.0 - 2.0.7)
-# These should be available on all unices
-LIBC_LIBC=-lc
-LIBC_LIBM=-lm
-
-include $(RTEMS_ROOT)/make/custom/$(RTEMS_HOST)-posix.cfg
-
-# Not applicable - let's override 'em
-LINKCMDS=
-
-# 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
-#
-# 'NODE' is set to 1 or 2 for multi cpu tests (ref: mptests/mp01/node1/Makefile)
-# If NODE is set as an environment variable, don't trust it, zero it out.
-# (NODE turns out to be a very common environment variable)
-ifeq (,$(NODE))
-NODE=0
-else
-ifeq "$(origin NODE)" "environment"
-NODE=0
-endif
-endif