summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/gen68360/network
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-01-28 04:43:00 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-01-28 04:43:00 +0000
commit8830935c102d74fdbe9317ebed2196af171e6daa (patch)
treea60f58f4991552a1546c4a553652d0cbc9c09815 /c/src/lib/libbsp/m68k/gen68360/network
parent2004-01-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-8830935c102d74fdbe9317ebed2196af171e6daa.tar.bz2
2004-01-28 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 562/bsps * Makefile.am: Remove references to m68k-gdbstub.c, rtems-gdbstub-glue.c. * Makefile.am: Merge-in clock/Makefile.am, console/Makefile.am, network/Makefile.am, startup/Makefile.am, timer/Makefile.am. Use automake-compilation rules. * clock/Makefile.am, console/Makefile.am, network/Makefile.am, startup/Makefile.am, timer/Makefile.am, wrapup/Makefile.am: Remove. * configure.ac: Reflect changes above.
Diffstat (limited to 'c/src/lib/libbsp/m68k/gen68360/network')
-rw-r--r--c/src/lib/libbsp/m68k/gen68360/network/Makefile.am34
1 files changed, 0 insertions, 34 deletions
diff --git a/c/src/lib/libbsp/m68k/gen68360/network/Makefile.am b/c/src/lib/libbsp/m68k/gen68360/network/Makefile.am
deleted file mode 100644
index 35260c6e8f..0000000000
--- a/c/src/lib/libbsp/m68k/gen68360/network/Makefile.am
+++ /dev/null
@@ -1,34 +0,0 @@
-##
-## $Id$
-##
-
-PGM = $(ARCH)/network.rel
-
-C_FILES = network.c
-C_O_FILES = $(C_FILES:%.c=$(ARCH)/%.$(OBJEXT))
-
-OBJS = $(C_O_FILES)
-
-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): $(OBJS)
- $(make-rel)
-
-# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
-
-if HAS_NETWORKING
-all-local: $(OBJS) $(PGM)
-endif
-
-.PRECIOUS: $(PGM)
-
-EXTRA_DIST = network.c
-
-include $(top_srcdir)/../../../../automake/local.am