Add host application directories as distributables in Atmel Studio.

This commit is contained in:
Dean Camera 2013-08-14 19:18:16 +02:00
parent 82e606eb3b
commit de366fdbe1
6 changed files with 12 additions and 1 deletions

View file

@ -124,7 +124,7 @@ check_filenames: $(MODULE_OUTPUT_XML)
echo "Checking $$f..."; \
asf_file_dir=`dirname $$f`; \
xsltproc XDK/lufa_filelist_transform.xslt $$f | sed -e "/^$$/d" | while read -r i; do \
if ( ! test -f "$$asf_file_dir/$$i" ); then \
if ( ( ! test -f "$$asf_file_dir/$$i" ) && ( ! test -d "$$asf_file_dir/$$i" ) ); then \
echo "Source file \"$$i\" referenced in $$f does not exist!"; \
exit 1; \
fi; \