mirror of
https://github.com/isc-projects/bind9.git
synced 2026-07-04 21:35:47 -04:00
Added rules to link named to lwresd on 'make all' and 'make install'
This commit is contained in:
parent
afd7f38277
commit
c05abe6ef4
1 changed files with 6 additions and 2 deletions
|
|
@ -44,7 +44,7 @@ LIBS = ${LWRESLIBS} ${OMAPILIBS} ${DNSLIBS} ${ISCLIBS} @LIBS@
|
|||
|
||||
SUBDIRS = unix
|
||||
|
||||
TARGETS = named
|
||||
TARGETS = named lwresd
|
||||
|
||||
OBJS = client.@O@ interfacemgr.@O@ listenlist.@O@ \
|
||||
log.@O@ logconf.@O@ main.@O@ notify.@O@ omapi.@O@ \
|
||||
|
|
@ -70,6 +70,9 @@ main.@O@: main.c
|
|||
named: ${OBJS} ${UOBJS} ${DEPLIBS}
|
||||
${LIBTOOL} ${CC} ${CFLAGS} -o $@ ${OBJS} ${UOBJS} ${LIBS}
|
||||
|
||||
lwresd: named
|
||||
@LN@ named lwresd
|
||||
|
||||
clean distclean::
|
||||
rm -f ${TARGETS}
|
||||
|
||||
|
|
@ -78,5 +81,6 @@ installdirs:
|
|||
mkdir ${DESTDIR}${sbindir}; \
|
||||
fi
|
||||
|
||||
install:: named installdirs
|
||||
install:: named lwresd installdirs
|
||||
${LIBTOOL} ${INSTALL_PROGRAM} named ${DESTDIR}${sbindir}
|
||||
(cd ${DESTDIR}${sbindir}; @LN@ named lwresd)
|
||||
|
|
|
|||
Loading…
Reference in a new issue