blob: d91cd4700fdd4eb1d9d6dc0e928a7c5e44532300 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
# $OpenBSD: Makefile.bsd-wrapper,v 1.13 2002/01/14 00:11:44 millert Exp $
MAN= sudo.8 sudoers.5 visudo.8
BINOWN= root
XCFLAGS= CC="${CC}" CFLAGS="${CFLAGS} ${COPTS}" LDFLAGS="${LDFLAGS}"
CONFIGURE_OPTS= --prefix=/usr --with-devel --with-execv --with-insults \
--with-bsdauth --with-env-editor --disable-path-info \
--with-logfac=authpriv
.include <bsd.own.mk>
.if (${SKEY:L} == "yes")
CONFIGURE_OPTS+=--with-skey
LDADD+= -lskey
DPADD+= ${LIBSKEY}
.endif
.if (${KERBEROS:L} == "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" \
CONFIG_FILES="Makefile config.h pathnames.h" \
${XCFLAGS} sh ${.CURDIR}/configure ${CONFIGURE_OPTS} ${CF}
config.status:
PATH="/bin:/usr/bin:/sbin:/usr/sbin" \
CONFIG_FILES="Makefile config.h pathnames.h" \
${XCFLAGS} sh ${.CURDIR}/configure ${CONFIGURE_OPTS} ${CF}
.ifdef NOMAN
maninstall:
@echo NOMAN is set
.endif
install: maninstall
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m 4555 \
sudo ${DESTDIR}/usr/bin/sudo
${INSTALL} ${INSTALL_COPY} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
visudo ${DESTDIR}/usr/sbin/visudo
clean cleandir:
@test ! -e Makefile || ${MAKE} distclean
rm -f def_data.c def_data.h
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
|