summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/wrapup
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-02-03 08:15:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-02-03 08:15:03 +0000
commit14023b45a2910eb85d75042b95cd2fdf16dede40 (patch)
tree00ab544a226932044e9b17708944018db8c5d961 /c/src/lib/libbsp/i386/pc386/wrapup
parent2004-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-14023b45a2910eb85d75042b95cd2fdf16dede40.tar.bz2
2004-02-03 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
* Makefile.am: Merge-in 3c509/Makefile.am, clock/Makefile.am, console/Makefile.am, ide/Makefile.am, ne2000/Makefile.am, startup/Makefile.am, timer/Makefile.am, wd8003/Makefile.am, wrapup/Makefile.am. Use automake compilation rules. * 3c509/Makefile.am, clock/Makefile.am, console/Makefile.am, ide/Makefile.am, ne2000/Makefile.am, startup/Makefile.am, timer/Makefile.am, wd8003/Makefile.am, wrapup/Makefile.am: Remove. * configure.ac: Reflect changes above. * start/start.S: Change comment to make it gcc -ansi compliant.
Diffstat (limited to 'c/src/lib/libbsp/i386/pc386/wrapup')
-rw-r--r--c/src/lib/libbsp/i386/pc386/wrapup/.cvsignore2
-rw-r--r--c/src/lib/libbsp/i386/pc386/wrapup/Makefile.am27
2 files changed, 0 insertions, 29 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/wrapup/.cvsignore b/c/src/lib/libbsp/i386/pc386/wrapup/.cvsignore
deleted file mode 100644
index 282522db03..0000000000
--- a/c/src/lib/libbsp/i386/pc386/wrapup/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-Makefile.in
diff --git a/c/src/lib/libbsp/i386/pc386/wrapup/Makefile.am b/c/src/lib/libbsp/i386/pc386/wrapup/Makefile.am
deleted file mode 100644
index c326bbfd38..0000000000
--- a/c/src/lib/libbsp/i386/pc386/wrapup/Makefile.am
+++ /dev/null
@@ -1,27 +0,0 @@
-##
-## $Id$
-##
-
-# We only build the Network library if HAS_NETWORKING was defined
-# dec21140 is supported via libchip
-if HAS_NETWORKING
-NETWORK = ne2000 wd8003 3c509
-endif
-
-BSP_FILES = startup clock console timer $(NETWORK) ide
-
-# bummer; have to use $foreach since % pattern subst rules only replace 1x
-OBJS = $(foreach piece, $(BSP_FILES), ../$(piece)/$(ARCH)/*.$(OBJEXT)) \
- ../../../../libcpu/i386/cache$(LIB_VARIANT).rel \
- ../../../../libcpu/i386/page$(LIB_VARIANT).rel \
- ../../../../libcpu/i386/score$(LIB_VARIANT).rel
-
-include $(top_srcdir)/../../../../automake/compile.am
-include $(top_srcdir)/../../../../automake/lib.am
-
-$(ARCH)/libbsp.a: $(OBJS)
- $(make-library)
-
-noinst_DATA = $(ARCH)/libbsp.a
-
-include $(top_srcdir)/../../../../automake/local.am