aboutsummaryrefslogtreecommitdiff
path: root/share/examples/autofs/driver/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'share/examples/autofs/driver/Makefile')
-rw-r--r--share/examples/autofs/driver/Makefile18
1 files changed, 18 insertions, 0 deletions
diff --git a/share/examples/autofs/driver/Makefile b/share/examples/autofs/driver/Makefile
new file mode 100644
index 000000000000..7a0f159cc5d3
--- /dev/null
+++ b/share/examples/autofs/driver/Makefile
@@ -0,0 +1,18 @@
+# $Id: Makefile,v 1.5 2004/09/08 08:27:12 bright Exp $
+# $FreeBSD$
+
+PROG=autodriver
+
+SRCS= autodriver.c
+NO_MAN=
+WARNS= 4
+CFLAGS+= -g
+BINDIR?= /sbin
+
+DPADD+= ${.OBJDIR}/../libautofs/libautofs.a
+#LDADD+= -lautofs
+LDADD+= ${.OBJDIR}/../libautofs/libautofs.a
+LDFLAGS+= -L${.OBJDIR}/../libautofs
+CFLAGS+= -I${.CURDIR}/../libautofs
+
+.include <bsd.prog.mk>