Browse Source

Makefile tweak: simplify (and move) the definition of the location of CUDD.

accumulation-v4.7
Dave Parker 7 years ago
parent
commit
beb5b779c8
  1. 14
      prism/Makefile

14
prism/Makefile

@ -21,6 +21,10 @@ export PRISM_INCLUDE_DIR = include
export PRISM_IMAGES_DIR = images export PRISM_IMAGES_DIR = images
export PRISM_DTDS_DIR = dtds export PRISM_DTDS_DIR = dtds
# Location of CUDD (used to be variable; now mainly fixed with the git repo layout)
CUDD_DIR = ../cudd
#################### ####################
# Operating system # # Operating system #
#################### ####################
@ -297,16 +301,6 @@ endif
export CFLAGS CXXFLAGS LDFLAGS JFLAGS LIBPREFIX LIBSUFFIX export CFLAGS CXXFLAGS LDFLAGS JFLAGS LIBPREFIX LIBSUFFIX
#######################
# Directory detection #
#######################
# For CUDD, we default either to ./cudd or, if that does not exist, ../cudd
# To override, comment out the first line and use the second (or specify from the command-line)
CUDD_DIR = $(shell if [ -d cudd ]; then echo cudd; else echo ../cudd; fi )
#CUDD_DIR = cudd
########################################## ##########################################
# Main part of Makefile: Compiling PRISM # # Main part of Makefile: Compiling PRISM #
########################################## ##########################################

Loading…
Cancel
Save