summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/i386/pc386/network/Makefile.in
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-07-23 22:13:10 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-07-23 22:13:10 +0000
commitdbaf51a44b8c465ac2f546d21719c66cd889c91f (patch)
tree1559a3f5a2738745564c44b21b6b8959d67c68e6 /c/src/lib/libbsp/i386/pc386/network/Makefile.in
parentPatch from Eric VALETTE <valette@crf.canon.fr>: (diff)
downloadrtems-dbaf51a44b8c465ac2f546d21719c66cd889c91f.tar.bz2
Patch from Emmanuel Raguet <raguet@crf.canon.fr>:
Here is a patch for KA9Q stack. This patch contains an Ethernet Driver for Western Digital, some fixes for the UDP and TCP protocols (for endian conversion) and some little programs which allow the test of UDP and TCP sockets via Ethernet. I have tested that on an Intel machine. If someone can test it on a big-endian machine, ...
Diffstat (limited to 'c/src/lib/libbsp/i386/pc386/network/Makefile.in')
-rw-r--r--c/src/lib/libbsp/i386/pc386/network/Makefile.in54
1 files changed, 54 insertions, 0 deletions
diff --git a/c/src/lib/libbsp/i386/pc386/network/Makefile.in b/c/src/lib/libbsp/i386/pc386/network/Makefile.in
new file mode 100644
index 0000000000..262e5be2b2
--- /dev/null
+++ b/c/src/lib/libbsp/i386/pc386/network/Makefile.in
@@ -0,0 +1,54 @@
+#
+# $Id$
+#
+
+@SET_MAKE@
+srcdir = @srcdir@
+VPATH = @srcdir@
+RTEMS_ROOT = @top_srcdir@
+PROJECT_ROOT = @PROJECT_ROOT@
+
+PGM=${ARCH}/network.rel
+
+# C source names, if any, go here -- minus the .c
+C_PIECES=network
+C_FILES=$(C_PIECES:%=%.c)
+C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
+
+H_FILES=
+
+SRCS=$(C_FILES) $(H_FILES)
+OBJS=$(C_O_FILES)
+
+include $(RTEMS_ROOT)/make/custom/$(RTEMS_BSP).cfg
+include $(RTEMS_ROOT)/make/leaf.cfg
+
+#
+# (OPTIONAL) Add local stuff here using +=
+#
+
+DEFINES +=
+CPPFLAGS +=
+CFLAGS +=
+
+LD_PATHS +=
+LD_LIBS +=
+LDFLAGS +=
+
+#
+# Add your list of files to delete here. The config files
+# already know how to delete some stuff, so you may want
+# to just run 'make clean' first to see what gets missed.
+# 'make clobber' already includes 'make clean'
+#
+
+CLEAN_ADDITIONS +=
+CLOBBER_ADDITIONS +=
+
+${PGM}: ${SRCS} ${OBJS}
+ $(make-rel)
+
+all: ${ARCH} $(SRCS) $(PGM)
+
+# the .rel file built here will be put into libbsp.a by ../wrapup/Makefile
+install: all