mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-25 10:52:13 -04:00
use ${srcdir}/include, not ./include, in the include path so
that builds into a separate object directory work; eliminiated the RNDCINCLUDES and CONFINCLUDES macros since they are not really necessary; eliminated -DRNDC_SYSCONFDIR option passed to compiler when compiling rndc-confgen.c since it is not actually used
This commit is contained in:
parent
89209405b7
commit
dfe3edd7cd
1 changed files with 6 additions and 9 deletions
|
|
@ -13,7 +13,7 @@
|
|||
# NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
|
||||
# WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
|
||||
# $Id: Makefile.in,v 1.30 2001/08/03 05:56:16 marka Exp $
|
||||
# $Id: Makefile.in,v 1.31 2001/08/03 22:03:10 gson Exp $
|
||||
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
|
@ -23,11 +23,8 @@ top_srcdir = @top_srcdir@
|
|||
|
||||
@BIND9_INCLUDES@
|
||||
|
||||
CINCLUDES = ${ISC_INCLUDES}
|
||||
|
||||
RNDCINCLUDES = ${CINCLUDES} ${ISCCC_INCLUDES} ${ISCCFG_INCLUDES}
|
||||
|
||||
CONFINCLUDES = -Iinclude ${CINCLUDES} ${DNS_INCLUDES}
|
||||
CINCLUDES = -I${srcdir}/include ${ISC_INCLUDES} ${ISCCC_INCLUDES} \
|
||||
${ISCCFG_INCLUDES} ${DNS_INCLUDES}
|
||||
|
||||
CDEFINES =
|
||||
CWARNINGS =
|
||||
|
|
@ -63,16 +60,16 @@ UOBJS = unix/os.@O@
|
|||
@BIND9_MAKE_RULES@
|
||||
|
||||
rndc.@O@: rndc.c
|
||||
${LIBTOOL} ${CC} ${ALL_CFLAGS} ${RNDCINCLUDES} \
|
||||
${LIBTOOL} ${CC} ${ALL_CFLAGS} \
|
||||
-DVERSION=\"${VERSION}\" \
|
||||
-DRNDC_CONFFILE=\"${sysconfdir}/rndc.conf\" \
|
||||
-DRNDC_KEYFILE=\"${sysconfdir}/rndc.key\" \
|
||||
-c ${srcdir}/rndc.c
|
||||
|
||||
rndc-confgen.@O@: rndc-confgen.c
|
||||
${LIBTOOL} ${CC} ${ALL_CFLAGS} ${CONFINCLUDES} \
|
||||
${LIBTOOL} ${CC} ${ALL_CFLAGS} \
|
||||
-DRNDC_KEYFILE=\"${sysconfdir}/rndc.key\" \
|
||||
-DRNDC_SYSCONFDIR=\"${sysconfdir}\" -c ${srcdir}/rndc-confgen.c
|
||||
-c ${srcdir}/rndc-confgen.c
|
||||
|
||||
rndc: rndc.@O@ util.@O@ ${RNDCDEPLIBS}
|
||||
${LIBTOOL} ${PURIFY} ${CC} ${CFLAGS} -o $@ rndc.@O@ util.@O@ \
|
||||
|
|
|
|||
Loading…
Reference in a new issue