| summaryrefslogtreecommitdiff | 
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-21 15:26:01 +0200 | 
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2017-09-21 15:26:01 +0200 | 
| commit | 0fc661ebabdf55b8e0d26c4f85f0547c106b6549 (patch) | |
| tree | b41a52c7a6294b381cd370379ef4b5abbea7d8a7 /instance-calculator/Makefile | |
| parent | bc3e8933e1005e93e4a97b9a207cb40db454a2a8 (diff) | |
Got some property dependencies to work.
Diffstat (limited to 'instance-calculator/Makefile')
| -rw-r--r-- | instance-calculator/Makefile | 16 | 
1 files changed, 4 insertions, 12 deletions
| diff --git a/instance-calculator/Makefile b/instance-calculator/Makefile index 9dddc88..9002ca1 100644 --- a/instance-calculator/Makefile +++ b/instance-calculator/Makefile @@ -1,24 +1,16 @@  ## Parameters ##################################################################  #### Where to find the model -ifndef MODEL_DIR -MODEL_DIR = -endif +MODEL_DIR ?=  #### Where to store the Instance model -ifndef MODEL_INSTANCES_DIR -MODEL_INSTANCES_DIR = -endif +MODEL_INSTANCES_DIR ?=  #### Binaries  ###### JRE binary -ifndef JAVA -JAVA = java -endif +JAVA ?= java  ###### JDK binary -ifndef JAVAC -JAVAC = javac -endif +JAVAC ?= javac  ## Parameters Sanity Check #####################################################  ifeq ($(strip $(MODEL_DIR)),) | 


