summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/ne2000
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/ne2000
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/ne2000')
-rw-r--r--c/src/lib/libbsp/i386/pc386/ne2000/.cvsignore2
-rw-r--r--c/src/lib/libbsp/i386/pc386/ne2000/Makefile.am33
2 files changed, 0 insertions, 35 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/ne2000/.cvsignore b/c/src/lib/libbsp/i386/pc386/ne2000/.cvsignore
deleted file mode 100644
index 282522db03..0000000000
--- a/c/src/lib/libbsp/i386/pc386/ne2000/.cvsignore
+++ /dev/null
@@ -1,2 +0,0 @@
-Makefile
-Makefile.in
diff --git a/c/src/lib/libbsp/i386/pc386/ne2000/Makefile.am b/c/src/lib/libbsp/i386/pc386/ne2000/Makefile.am
deleted file mode 100644
index d5f1b51923..0000000000
--- a/c/src/lib/libbsp/i386/pc386/ne2000/Makefile.am
+++ /dev/null
@@ -1,33 +0,0 @@
-##
-## $Id$
-##
-
-PGM = $(ARCH)/ne2000.rel
-
-C_FILES = ne2000.c
-ne2000_rel_OBJECTS = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
-
-include $(top_srcdir)/../../../../automake/compile.am
-include $(top_srcdir)/../../../../automake/lib.am
-
-#
-# (OPTIONAL) Add local stuff here using +=
-#
-
-AM_CPPFLAGS += -D__INSIDE_RTEMS_BSD_TCPIP_STACK__
-
-$(PGM): $(ne2000_rel_OBJECTS)
- $(make-rel)
-
-# the .rel file built here will be put into libbsp.a by
-# ../wrapup/Makefile
-
-if HAS_NETWORKING
-all-local: $(ne2000_rel_OBJECTS) $(PGM)
-endif
-
-.PRECIOUS: $(PGM)
-
-EXTRA_DIST = ne2000.c
-
-include $(top_srcdir)/../../../../automake/local.am