summaryrefslogtreecommitdiffstats
path: root/utils/statd/Makefile
diff options
context:
space:
mode:
authorneilbrown <neilbrown>2005-12-20 05:19:23 +0000
committerneilbrown <neilbrown>2005-12-20 05:19:23 +0000
commitbdbc60fa30f8aaaf61f4958c84d0ff3ca85c6149 (patch)
tree52af51126c8530d5096fda3a70b99ce4c6e19381 /utils/statd/Makefile
parent83b193255274fdb03a78d7f61ffe8a5b816d1a2b (diff)
downloadnfs-utils-bdbc60fa30f8aaaf61f4958c84d0ff3ca85c6149.tar.gz
nfs-utils-bdbc60fa30f8aaaf61f4958c84d0ff3ca85c6149.tar.xz
nfs-utils-bdbc60fa30f8aaaf61f4958c84d0ff3ca85c6149.zip
Remove all the Makefiles
Diffstat (limited to 'utils/statd/Makefile')
-rw-r--r--utils/statd/Makefile61
1 files changed, 0 insertions, 61 deletions
diff --git a/utils/statd/Makefile b/utils/statd/Makefile
deleted file mode 100644
index 6301d27..0000000
--- a/utils/statd/Makefile
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright (C) 1995-1999 Jeffrey A. Uphoff
-# Adapted for linux-nfs build tree by Olaf Kirch, 1996.
-#
-# NSM for Linux.
-
-TOP = ../../
-# Uncomment for embedded client-side simulation functions.
-#SIMUL = -DSIMULATIONS
-
-# Undefined is normal, defined provides debug logging.
-#DEBUG = -DDEBUG
-
-##################################################################
-# no user-serviceable parts below this line
-##################################################################
-PROGRAM = statd
-PREFIX = rpc.
-OBJS = $(SRCS:.c=.o)
-CCOPTS = $(DEBUG) $(SIMUL)
-LIBS = -lexport -lnfs -lmisc $(LIBWRAP) $(LIBNSL)
-
-SRCS = $(RPCSRCS) $(SIMSRCS) \
- callback.c notlist.c log.c misc.c monitor.c notify.c simu.c \
- stat.c statd.c state.c svc_run.c rmtcall.c
-HDRS = $(RPCHDRS) $(SIMHDRS)
-
-RPCSRCS = sm_inter_clnt.c sm_inter_svc.c sm_inter_xdr.c
-RPCHDRS = sm_inter.h
-
-ifdef SIMUL
-SIMSRCS = sim_sm_inter_clnt.c sim_sm_inter_svc.c
-SIMHDRS = sim_sm_inter.h
-SRCS += simulate.c
-endif
-
-MAN8 = statd
-
-include $(TOP)rules.mk
-
-AFLAGS += -Wno-unused
-
-$(RPCHDRS) $(RPCSRCS): sm_inter.x
- $(RM) $(RPCHDRS) $(RPCSRCS)
- $(RPCGEN) -h -o sm_inter.h $<
- $(RPCGEN) -l -o sm_inter_clnt.c $<
- $(RPCGEN) -m -o sm_inter_svc.c $<
- $(RPCGEN) -c -o sm_inter_xdr.c $<
-
-$(SIMHDRS) $(SIMSRCS): sim_sm_inter.x
- $(RM) $(SIMHDRS) $(SIMSRCS)
- $(RPCGEN) -h -o sim_sm_inter.h $<
- $(RPCGEN) -l -o sim_sm_inter_clnt.c $<
- $(RPCGEN) -m -o sim_sm_inter_svc.c $<
-
-clean::
- $(RM) $(PROGRAM)
-
-distclean::
- $(RM) $(RPCHDRS) $(RPCSRCS) $(SIMHDRS) $(SIMSRCS)
-
-predep:: $(RPCHDRS) $(RPCSRCS)