2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-30 14:07:59 +00:00

287. [func] rndc is now installed by "make install" into

$sbindir.
This resolves RT #145 item 1.
This commit is contained in:
David Lawrence
2000-06-28 16:27:17 +00:00
parent 15197aefa1
commit c229b778b8

View File

@@ -13,7 +13,7 @@
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
# $Id: Makefile.in,v 1.7 2000/06/22 21:50:01 tale Exp $
# $Id: Makefile.in,v 1.8 2000/06/28 16:27:17 tale Exp $
srcdir = @srcdir@
VPATH = @srcdir@
@@ -52,5 +52,13 @@ SRCS = rndc.c
rndc: ${OBJS} ${DEPLIBS}
${LIBTOOL} ${CC} ${CFLAGS} -o $@ ${OBJS} ${LIBS}
installdirs:
if [ ! -d ${DESTDIR}${sbindir} ]; then \
mkdir ${DESTDIR}${sbindir}; \
fi
install:: rndc
${LIBTOOL} ${INSTALL_PROGRAM} rndc ${DESTDIR}${sbindir}
clean distclean::
rm -f ${TARGETS}