You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
722 B

############################################################
# Small makefile for building PRISM source distributions #
############################################################
default: none
none:
@echo 'Did you want to build PRISM? Do "cd prism" and then "make"'
VERSION=# default value for VERSION is blank to force provision at command-line
dist_src: dist_check_version
mv prism-examples prism/examples
mv cudd prism
mv prism "prism-$(VERSION)-src"
(cd "prism-$(VERSION)-src"; $(MAKE) clean_all )
(cd "prism-$(VERSION)-src"; $(MAKE) dist_tidy )
dist_check_version:
@if [ "$(VERSION)" = "" ]; then echo "Usage: make dist_src VERSION=XXX"; exit 1; fi
#################################################