verify_tools:

- not only look for the cygwin tools, but also check the MSVC tools required like cl.exe, link.exe and nmake.exe

- I don't know why we should use /usr/bin/find but simply find, check for it instead. If there's a reason to use /usr/bin/find, we should use $(FIND) instead but I currently don't see a reason for this

svn path=/trunk/; revision=15220
This commit is contained in:
Ulf Lamping 2005-08-05 08:34:47 +00:00
parent f378e9ec64
commit 2a2e994cb1
1 changed files with 4 additions and 1 deletions

View File

@ -403,12 +403,15 @@ doxygen: doxygen.cfg doxygen-run
################################################################################ ################################################################################
REQUIRED_TOOLS=\ REQUIRED_TOOLS=\
$(CC) \
$(LINK) \
nmake \
$(SH) \ $(SH) \
$(YACC) \ $(YACC) \
$(LEX) \ $(LEX) \
env \ env \
grep \ grep \
/usr/bin/find \ find \
$(PERL) \ $(PERL) \
$(PYTHON) \ $(PYTHON) \
sed \ sed \