Browse Source

Update distr build makefile - ignore local examples/test dirs.

git-svn-id: https://www.prismmodelchecker.org/svn/prism/prism/trunk@4575 bbc10eb1-c90d-0410-af57-cb519fbb1720
master
Dave Parker 14 years ago
parent
commit
0041eb26f6
  1. 7
      Makefile

7
Makefile

@ -10,6 +10,13 @@ none:
VERSION=# default value for VERSION is blank to force provision at command-line
dist_src: dist_check_version
mkdir dontcopy
@if [ -e prism/examples ]; then \
echo "mv prism/examples dontcopy"; mv prism/examples dontcopy; \
fi
@if [ -e prism/tests ]; then \
echo "mv prism/tests dontcopy"; mv prism/tests dontcopy; \
fi
mv prism-examples prism/examples
mv cudd prism
mv prism "prism-$(VERSION)-src"

Loading…
Cancel
Save