Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 1 | # config.mk - generated from ansible/roles/genconfig/templates/config.mk.j2 |
| 2 | # ** DO NOT EDIT THIS FILE MANUALLY! ** |
| 3 | # Edit the Pod Config (or Scenario) and rerun `make config` to regenerate it |
| 4 | |
| 5 | # Scenario specific config |
| 6 | {% if vagrant_vms is defined %} |
| 7 | VAGRANT_VMS = {{ vagrant_vms | join(' ') }} |
| 8 | {% endif %} |
| 9 | {% if headnode is defined %} |
| 10 | HEADNODE = {{ headnode }} |
| 11 | {% endif %} |
| 12 | {% if buildnode is defined %} |
| 13 | BUILDNODE = {{ buildnode }} |
| 14 | {% endif %} |
| 15 | {% if deploy_docker_tag is defined %} |
| 16 | DEPLOY_DOCKER_TAG = {{ deploy_docker_tag }} |
| 17 | {% endif %} |
| 18 | {% if config_cord_profile_dir is defined %} |
| 19 | CONFIG_CORD_PROFILE_DIR = {{ config_cord_profile_dir }} |
| 20 | {% endif %} |
| 21 | |
| 22 | # Targets and prerequisties |
| 23 | {% if build_targets is defined %} |
| 24 | BUILD_TARGETS = $(M)/{{ build_targets | join(" $(M)/") }} |
| 25 | {% endif %} |
| 26 | {% if vagrant_up_prereqs is defined %} |
| 27 | VAGRANT_UP_PREREQS = $(M)/{{ vagrant_up_prereqs | join(" $(M)/") }} |
| 28 | {% endif %} |
| 29 | {% if cord_config_prereqs is defined %} |
| 30 | CORD_CONFIG_PREREQS = $(M)/{{ cord_config_prereqs | join(" $(M)/") }} |
| 31 | {% endif %} |
| 32 | {% if copy_config_prereqs is defined %} |
| 33 | COPY_CONFIG_PREREQS = $(M)/{{ copy_config_prereqs | join(" $(M)/") }} |
| 34 | {% endif %} |
| 35 | {% if prep_buildnode_prereqs is defined %} |
| 36 | PREP_BUILDNODE_PREREQS = $(M)/{{ prep_buildnode_prereqs | join(" $(M)/") }} |
| 37 | {% endif %} |
| 38 | {% if prep_headnode_prereqs is defined %} |
| 39 | PREP_HEADNODE_PREREQS = $(M)/{{ prep_headnode_prereqs | join(" $(M)/") }} |
| 40 | {% endif %} |
Zack Williams | a5fcefd | 2017-07-27 22:06:33 -0700 | [diff] [blame] | 41 | {% if docker_images_prereqs is defined %} |
| 42 | DOCKER_IMAGES_PREREQS = $(M)/{{ docker_images_prereqs | join(" $(M)/") }} |
| 43 | {% endif %} |
Zack Williams | 0a7ef16 | 2017-07-18 18:15:26 -0700 | [diff] [blame] | 44 | {% if start_xos_prereqs is defined %} |
| 45 | START_XOS_PREREQS = $(M)/{{ start_xos_prereqs | join(" $(M)/") }} |
| 46 | {% endif %} |
| 47 | {% if deploy_onos_prereqs is defined %} |
| 48 | DEPLOY_ONOS_PREREQS = $(M)/{{ deploy_onos_prereqs | join(" $(M)/") }} |
| 49 | {% endif %} |
Zack Williams | ce63eb0 | 2017-02-28 10:46:22 -0700 | [diff] [blame] | 50 | |