[BACK]Return to Makefile.bsd-wrapper CVS log [TXT][DIR] Up to [local] / src / usr.bin / sudo

File: [local] / src / usr.bin / sudo / Attic / Makefile.bsd-wrapper (download)

Revision 1.1.1.1 (vendor branch), Thu Nov 18 16:29:01 1999 UTC (24 years, 6 months ago) by millert
Branch: COURTESAN
CVS Tags: SUDO_1_6_0
Changes since 1.1: +0 -0 lines

sudo 1.6, now with a BSD license

#	$OpenBSD: Makefile.bsd-wrapper,v 1.1.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