diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2004-09-28 15:10:52 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2004-09-28 15:10:52 +0000 |
commit | b2ce21d7e22822255c394cc618c029fdcd31be4d (patch) | |
tree | ba0dcff50d70b05985ecb9590c0bf828c151a021 /usr.bin/sudo/noexec/Makefile | |
parent | 6d2330fc528f6b282a6ed3bff15e92d30ee98805 (diff) |
Update to sudo 1.6.8p1
Diffstat (limited to 'usr.bin/sudo/noexec/Makefile')
-rw-r--r-- | usr.bin/sudo/noexec/Makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/usr.bin/sudo/noexec/Makefile b/usr.bin/sudo/noexec/Makefile new file mode 100644 index 00000000000..4dfbe833091 --- /dev/null +++ b/usr.bin/sudo/noexec/Makefile @@ -0,0 +1,19 @@ +# $OpenBSD: Makefile,v 1.1 2004/09/28 15:10:51 millert Exp $ + +.PATH: ${.CURDIR}/.. + +LIB= noexec +NOMAN= yes +SRCS= sudo_noexec.c +CPPFLAGS+= -I. +LIBDIR= /usr/libexec + +DEBUGLIBS= no +NOPROFILE= yes + +install: + ${INSTALL} ${INSTALL_COPY} -o ${LIBOWN} -g ${LIBGRP} -m ${LIBMODE} \ + lib${LIB}.so.${SHLIB_MAJOR}.${SHLIB_MINOR} \ + ${DESTDIR}${LIBDIR}/sudo_noexec.so + +.include <bsd.lib.mk> |