mirror of
https://github.com/isc-projects/bind9.git
synced 2026-05-28 04:34:54 -04:00
make depend needs to decend into lib/*/test [rt #43105]
This commit is contained in:
parent
c55b572ccf
commit
5336feefb0
1 changed files with 2 additions and 1 deletions
|
|
@ -45,6 +45,7 @@ all: ${PREREQS} subdirs ${TARGETS} testdirs
|
|||
###
|
||||
### Makefile may define:
|
||||
### SUBDIRS
|
||||
### DEPDIRS
|
||||
|
||||
ALL_SUBDIRS = ${SUBDIRS} nulldir
|
||||
ALL_TESTDIRS = ${TESTDIRS} nulldir
|
||||
|
|
@ -232,7 +233,7 @@ distclean maintainer-clean::
|
|||
rm -f Makefile
|
||||
|
||||
depend:
|
||||
@for i in ${ALL_SUBDIRS}; do \
|
||||
@for i in ${ALL_SUBDIRS} ${ALL_TESTDIRS}; do \
|
||||
if [ "$$i" != "nulldir" -a -d $$i ]; then \
|
||||
echo "making depend in `pwd`/$$i"; \
|
||||
(cd $$i; ${MAKE} ${MAKEDEFS} DESTDIR="${DESTDIR}" $@) || exit 1; \
|
||||
|
|
|
|||
Loading…
Reference in a new issue