summaryrefslogtreecommitdiffstats
path: root/utils/nfsd/Makefile
diff options
context:
space:
mode:
authorhjl <hjl>1999-10-18 23:21:12 +0000
committerhjl <hjl>1999-10-18 23:21:12 +0000
commit8b7ad01b14df1e7529b9ba8a1ea17df0d6004ef9 (patch)
tree0904ef8554ed680fe3244fa618685e1fb7ea148b /utils/nfsd/Makefile
downloadnfs-utils-8b7ad01b14df1e7529b9ba8a1ea17df0d6004ef9.tar.gz
nfs-utils-8b7ad01b14df1e7529b9ba8a1ea17df0d6004ef9.tar.xz
nfs-utils-8b7ad01b14df1e7529b9ba8a1ea17df0d6004ef9.zip
Initial revision
Diffstat (limited to 'utils/nfsd/Makefile')
-rw-r--r--utils/nfsd/Makefile35
1 files changed, 35 insertions, 0 deletions
diff --git a/utils/nfsd/Makefile b/utils/nfsd/Makefile
new file mode 100644
index 0000000..4cc6f8a
--- /dev/null
+++ b/utils/nfsd/Makefile
@@ -0,0 +1,35 @@
+#
+# Makefile for knfsd
+#
+
+PROGRAM = nfsd
+PREFIX = rpc.
+OBJS = nfsd.o
+DEPLIBS = $(TOP)support/lib/libfs.a
+LIBS = -lnfs
+MAN8 = nfsd
+
+include $(TOP)rules.mk
+
+#
+# all:: nfsd
+# @echo "Done."
+#
+# nfsd: $(OBJS)
+# $(CC) $(LDFLAGS) -o $@ $(OBJS) -lnfs
+#
+# clean distclean::
+# rm -f *.o
+#
+# distclean::
+# rm -f nfsd .depend
+#
+# install::
+# install -o root -g root -m 755 nfsd /usr/sbin/rpc.$knfsd
+#
+# dep::
+# $(CC) $(CFLAGS) -M $(OBJS:.o=.c) > .depend
+#
+# ifeq (.depend,$(wildcard .depend))
+# include .depend
+# endif