[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.17, Sun Mar 16 02:15:32 2003 UTC (21 years, 2 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.16: +1 -13 lines

Don't need to link in kerberos or skey libs anymore; we use BSD auth

#	$OpenBSD: Makefile.bsd-wrapper,v 1.17 2003/03/16 02:15:32 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-insults --with-bsdauth \
		--with-env-editor --disable-path-info --with-logfac=authpriv

.include <bsd.own.mk>

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: configure
	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} ${INSTALL_STRIP} -o ${BINOWN} -g \
	    ${BINGRP} -m 4555 sudo ${DESTDIR}/usr/bin/sudo
	${INSTALL} ${INSTALL_COPY} ${INSTALL_STRIP} -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