summaryrefslogtreecommitdiffstats
path: root/c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2007-07-25 05:47:18 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2007-07-25 05:47:18 +0000
commit1f3d2bd322f79cebab8a2aa7d4cc67158efbcd5a (patch)
tree2c4198daafd9b9bcca80f465fa6d038840a58e0d /c
parent2007-07-25 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-1f3d2bd322f79cebab8a2aa7d4cc67158efbcd5a.tar.bz2
Remove.
Diffstat (limited to 'c')
-rw-r--r--c/src/nfsclient/Makefile16
-rw-r--r--c/src/nfsclient/proto/Makefile76
-rw-r--r--c/src/nfsclient/src/Makefile104
3 files changed, 0 insertions, 196 deletions
diff --git a/c/src/nfsclient/Makefile b/c/src/nfsclient/Makefile
deleted file mode 100644
index a77b0f8910..0000000000
--- a/c/src/nfsclient/Makefile
+++ /dev/null
@@ -1,16 +0,0 @@
-#
-# $Id$
-#
-
-
-include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
-
-include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/directory.cfg
-
-SUBDIRS=proto src
-
-REVISION=$(filter-out $$%,$$Name$$)
-
-tar: tar-recursive
- @$(make-tar)
diff --git a/c/src/nfsclient/proto/Makefile b/c/src/nfsclient/proto/Makefile
deleted file mode 100644
index c45cacaae0..0000000000
--- a/c/src/nfsclient/proto/Makefile
+++ /dev/null
@@ -1,76 +0,0 @@
-#
-# $Id$
-#
-# Templates/Makefile.lib
-# Template library Makefile
-#
-
-
-LIBNAME=libnfsprot.a # xxx- your library names goes here
-LIB=${ARCH}/${LIBNAME}
-
-# C and C++ source names, if any, go here -- minus the .c or .cc
-C_PIECES=nfs_prot_xdr mount_prot_xdr
-C_FILES=$(C_PIECES:%=%.c)
-C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
-
-CC_PIECES=
-CC_FILES=$(CC_PIECES:%=%.cc)
-CC_O_FILES=$(CC_PIECES:%=${ARCH}/%.o)
-
-H_FILES=
-
-XFILES = $(wildcard *.x)
-
-# Assembly source names, if any, go here -- minus the .S
-S_PIECES=
-S_FILES=$(S_PIECES:%=%.S)
-S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
-
-SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
-OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
-
-include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
-
-include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/lib.cfg
-
-#
-# Add local stuff here using +=
-#
-
-DEFINES +=
-CPPFLAGS +=
-# inline declarations require -O
-# rpcgen produces unused variables
-CFLAGS += -O2 -Winline -Wno-unused-variable
-
-#
-# 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 += $(XFILES:%.x=%*.c) $(XFILES:%.x=%*.h)
-
-all: ${ARCH} $(SRCS) $(LIB)
-
-$(LIB): ${OBJS}
- $(make-library)
-
-%_xdr.c: %.x %.h
- rpcgen -c -C $< > $@
-
-%.h: %.x
- rpcgen -h -C $< > $@
-
-.PRECIOUS: $(XFILES:%.x=%.h) $(XFILES:%.x=%_xdr.c)
-
-tar: $(XFILES:%.x=%.h) $(XFILES:%.x=%_xdr.c)
-
-distclean: clean
-
-# DONT install this library.
-install: all
diff --git a/c/src/nfsclient/src/Makefile b/c/src/nfsclient/src/Makefile
deleted file mode 100644
index 431b5ad059..0000000000
--- a/c/src/nfsclient/src/Makefile
+++ /dev/null
@@ -1,104 +0,0 @@
-#
-# $Id$
-#
-# Templates/Makefile.leaf
-# Template leaf node Makefile
-#
-
-# if you have CEXP set this variable to 'YES'
-# and some "help" info will be compiled in.
-HAVE_CEXP=YES
-
-# C source names, if any, go here -- minus the .c
-C_PIECES_YES=rpcio nfs sock_mbuf xdr_mbuf dirutils rpcio.modini nfs.modini cexphelp
-C_PIECES_NO=rpcio nfs sock_mbuf xdr_mbuf
-
-C_PIECES=$(C_PIECES_$(HAVE_CEXP))
-
-C_FILES=$(C_PIECES:%=%.c)
-C_O_FILES=$(C_PIECES:%=${ARCH}/%.o)
-
-# C++ source names, if any, go here -- minus the .cc
-CC_PIECES=
-CC_FILES=$(CC_PIECES:%=%.cc)
-CC_O_FILES=$(CC_PIECES:%=${ARCH}/%.o)
-
-H_FILES=librtemsNfs.h rpcio.h
-INST_HEADERS=librtemsNfs.h
-
-# Assembly source names, if any, go here -- minus the .S
-S_PIECES=
-S_FILES=$(S_PIECES:%=%.S)
-S_O_FILES=$(S_FILES:%.S=${ARCH}/%.o)
-
-SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
-OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES) $(wildcard ../proto/$(ARCH)/*.o)
-
-PGMS=${ARCH}/nfs.obj ${ARCH}/rpcio.obj ${ARCH}/dirutils.obj
-
-LIBNAME=librtemsNfs.a
-
-LIB=$(ARCH)/$(LIBNAME)
-
-include $(RTEMS_MAKEFILE_PATH)/Makefile.inc
-include $(RTEMS_CUSTOM)
-include $(RTEMS_ROOT)/make/lib.cfg
-
-#
-# (OPTIONAL) Add local stuff here using +=
-#
-
-DEFS_CEXP_YES=-DHAVE_CEXP
-
-DEFINES += $(DEFS_CEXP_$(HAVE_CEXP))
-
-CPPFLAGS += -I. -I../proto
-
-CFLAGS +=
-
-#
-# CFLAGS_DEBUG_V are used when the `make debug' target is built.
-# To link your application with the non-optimized RTEMS routines,
-# uncomment the following line:
-# CFLAGS_DEBUG_V += -qrtems_debug
-#
-
-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 += xxx-your-debris-goes-here
-CLOBBER_ADDITIONS +=
-
-ifndef RTEMS_SITE_INSTALLDIR
-RTEMS_SITE_INSTALLDIR = $(PROJECT_RELEASE)
-endif
-
-%nfs.obj: %nfs.o %nfs.modini.o
- $(LD) -r -o $@ $^ -L../proto/$(ARCH) -lnfsprot
-
-%rpcio.obj: %rpcio.o %sock_mbuf.o %xdr_mbuf.o %rpcio.modini.o
- $(LD) -r -o $@ $^
-
-%dirutils.obj: %dirutils.o
- $(LD) -r -o $@ $^
-
-$(LIB): $(OBJS)
- $(make-library)
-
-all: ${ARCH} $(SRCS) $(PGMS) $(LIB)
-
-tar:
- echo not implemented
-
-# Install the program(s), appending _g or _p as appropriate.
-# for include files, just use $(INSTALL_CHANGE)
-install: all
- $(INSTALL_VARIANT) -m 555 ${PGMS} ${RTEMS_SITE_INSTALLDIR}/bin
- $(INSTALL_VARIANT) -m 555 ${LIB} ${RTEMS_SITE_INSTALLDIR}/lib
- $(INSTALL_CHANGE) -m 444 ${INST_HEADERS} ${RTEMS_SITE_INSTALLDIR}/include