# If export_files is a dependency here, but we remove it during this stage, # when exports.c is generated, make will not detect that export_files is no # longer here and deadlock. So, export_files can't be a dependency of # delete-exports. delete-exports:
@if test -f exports.c; then \ if test -f export_files; then \
files=`cat export_files`; \
headers="`find $$files -newer exports.c`"; \ if test -n "$$headers"; then \
echo Found newer headers. Will rebuild exports.c.; \
echo rm -f exports.c export_files; \
rm -f exports.c export_files; \
fi; \ else \
rm -f exports.c; \
fi; \
fi
export_files:
( for dir in $(EXPORT_DIRS); do \
ls $$dir/*.h ; \ done; \ echo "$(top_srcdir)/server/mpm_fdqueue.h"; \ for dir in $(EXPORT_DIRS_APR); do \ ls $$dir/ap[ru].h $$dir/ap[ru]_*.h 2>/dev/null; \ done; \ ) | sed -e s,//,/,g | sort -u > $@
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.