summaryrefslogtreecommitdiff
path: root/usr.bin/sudo/Makefile.bsd-wrapper
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>1999-11-18 16:29:02 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>1999-11-18 16:29:02 +0000
commitfb80ef71abd0dd6084c3019b48dac8f8875e56c0 (patch)
tree4539c778e73c91703e2f3f76360d2533b49f5ac6 /usr.bin/sudo/Makefile.bsd-wrapper
parent0c0a1b78c4dcea75d3af81ff0cfc60a948a7ef39 (diff)
sudo 1.6, now with a BSD license
Diffstat (limited to 'usr.bin/sudo/Makefile.bsd-wrapper')
-rw-r--r--usr.bin/sudo/Makefile.bsd-wrapper73
1 files changed, 73 insertions, 0 deletions
diff --git a/usr.bin/sudo/Makefile.bsd-wrapper b/usr.bin/sudo/Makefile.bsd-wrapper
new file mode 100644
index 00000000000..adb749a52b7
--- /dev/null
+++ b/usr.bin/sudo/Makefile.bsd-wrapper
@@ -0,0 +1,73 @@
+# $OpenBSD: Makefile.bsd-wrapper,v 1.1 1999/11/18 16:29:01 millert Exp $
+
+MAN= sudo.8 sudoers.5 visudo.8
+XCFLAGS= CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" LDFLAGS="${LDFLAGS}"
+CONFIGURE_OPTS= --prefix=/usr --with-devel --with-insults \
+ --with-env-editor --with-logfac=authpriv
+
+.include <bsd.own.mk>
+
+.if (${SKEY} == "yes")
+CONFIGURE_OPTS+=--with-skey
+LDADD+= -lskey
+DPADD+= ${LIBSKEY}
+.endif
+
+.if (${KERBEROS} == "yes")
+CONFIGURE_OPTS+=--with-kerb4
+LDADD+= -lkrb -ldes -lkafs
+DPADD+= ${LIBKRB} ${LIBDES} ${LIBKAFS}
+.endif
+
+all: config.status
+ ${MAKE}
+
+.FORCE: .IGNORE
+
+.ifdef GLOBAL_AUTOCONF_CACHE
+CF= --cache-file=${GLOBAL_AUTOCONF_CACHE}
+.else
+CF=
+.endif
+
+config: .FORCE
+.ifndef GLOBAL_AUTOCONF_CACHE
+ -rm -f config.cache
+.endif
+ PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
+ ${XCFLAGS} \
+ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
+ sh ${.CURDIR}/configure ${CONFIGURE_OPTS} ${CF}
+
+config.status:
+ PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
+ ${XCFLAGS} \
+ INSTALL_PROGRAM="${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP}" \
+ sh ${.CURDIR}/configure ${CONFIGURE_OPTS} ${CF}
+
+.ifdef NOMAN
+maninstall:
+ @echo NOMAN is set
+.endif
+
+install: maninstall
+ ${MAKE} ${XCFLAGS} prefix=${DESTDIR}/usr sysconfdir=${DESTDIR}/etc \
+ bindir=${DESTDIR}/usr/bin install-binaries install-sudoers
+
+clean cleandir:
+ -@test -e Makefile && ${MAKE} distclean
+
+depend:
+ # Nothing here so far...
+
+lint:
+ # Nothing here so far...
+
+tags:
+ # Nothing here so far...
+
+.include <bsd.obj.mk>
+.include <bsd.subdir.mk>
+.ifndef NOMAN
+.include <bsd.man.mk>
+.endif