Browse Source

Makefile bugfix: dist_bin works even in examples dir absent.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@785 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 18 years ago
parent
commit
b7c8f04c10
  1. 4
      prism/Makefile

4
prism/Makefile

@ -386,12 +386,12 @@ dist_tidy:
@find . -name '*NOTES*' | grep -v src/parser/NOTES | grep -v cudd/RELEASE.NOTES || test 1
@echo Processing text files...
@find . -type f -name '*.txt' -exec unix2dos {} {} \; 2> /dev/null
@find examples -type f ! -name auto -exec unix2dos {} {} \; 2> /dev/null
@find examples -type f ! -name auto -exec unix2dos {} {} \; 2> /dev/null || test 1
@echo Processing file permissions...
@find . -type f -exec chmod 644 {} \;
@find . \( -type d -o -type s \) -exec chmod 755 {} \;
@find . -type f \( -name '*.sh' -o -name '*.so' -o -name '*.dll' \) -exec chmod 755 {} \;
@find examples -type f -name 'auto' -exec chmod 755 {} \;
@find examples -type f -name 'auto' -exec chmod 755 {} \; || test 1
@find bin -type f -exec chmod 755 {} \;
@find src/bin -type f -exec chmod 755 {} \;
@find etc/scripts -type f -exec chmod 755 {} \;

Loading…
Cancel
Save