Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
BIND
Commits
e0bcb4f5
Commit
e0bcb4f5
authored
Jan 04, 1999
by
Bob Halley
Browse files
when dealing with subdirs, do not print messsages if the directory is nulldir
parent
38d2d0e9
Changes
1
Hide whitespace changes
Inline
Side-by-side
make/rules.in
View file @
e0bcb4f5
...
...
@@ -34,15 +34,15 @@ all: ${SUBDIRS} ${TARGETS}
ALL_SUBDIRS = ${SUBDIRS} nulldir
${ALL_SUBDIRS}: FORCE
@echo "making all in `pwd`/$@"
@if [ "$@" != "nulldir" -a -d $@ ]; then \
echo "making all in `pwd`/$@"; \
(cd $@; ${MAKE} ${MAKEDEFS} all); \
fi
install depend clean distclean::
@for i in ${ALL_SUBDIRS}; do \
echo "making $@ in `pwd`/$$i"; \
if [ "$$i" != "nulldir" -a -d $$i ]; then \
echo "making $@ in `pwd`/$$i"; \
(cd $$i; ${MAKE} ${MAKEDEFS} $@); \
fi \
done
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment