summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/m68k/gen68302/wrapup
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2000-12-14 17:53:53 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2000-12-14 17:53:53 +0000
commit8b868a11d919c746f699dfe45da04214dfae147d (patch)
tree39457e7bab889600e746332a07f3ba3a5586ce98 /c/src/lib/libbsp/m68k/gen68302/wrapup
parent2000-12-14 Emmanuel Raguet <raguet@crf.canon.fr> (diff)
downloadrtems-8b868a11d919c746f699dfe45da04214dfae147d.tar.bz2
2000-12-11 Joel Sherrill <joel@OARcorp.com>
* Makefile.am, configure.in, include/Makefile.am, wrapup/Makefile.am: Updated to reflect addition of network driver by Franck Julien <FranckJ@cxr.fr>. * include/m302_int.h, network/.cvsignore, network/Makefile.am, network/network.c: New file.
Diffstat (limited to 'c/src/lib/libbsp/m68k/gen68302/wrapup')
-rw-r--r--c/src/lib/libbsp/m68k/gen68302/wrapup/Makefile.am7
1 files changed, 6 insertions, 1 deletions
diff --git a/c/src/lib/libbsp/m68k/gen68302/wrapup/Makefile.am b/c/src/lib/libbsp/m68k/gen68302/wrapup/Makefile.am
index 7d63c33815..872aac7ac9 100644
--- a/c/src/lib/libbsp/m68k/gen68302/wrapup/Makefile.am
+++ b/c/src/lib/libbsp/m68k/gen68302/wrapup/Makefile.am
@@ -4,7 +4,12 @@
AUTOMAKE_OPTIONS = foreign 1.4
-BSP_PIECES = startup clock console timer
+# We only build the networking device driver if HAS_NETWORKING was defined
+if HAS_NETWORKING
+NETWORKING_DRIVER = network
+endif
+
+BSP_PIECES = startup clock console timer $(NETWORKING_DRIVER)
# bummer; have to use $foreach since % pattern subst rules only replace 1x
OBJS = $(foreach piece, $(BSP_PIECES), $(wildcard ../$(piece)/$(ARCH)/*.o))