blob: b778176a911ce2a7f098a9d4ab5439a0f9846da7 [file] [log] [blame]
Zack Williamsce63eb02017-02-28 10:46:22 -07001# 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 %}
7VAGRANT_VMS = {{ vagrant_vms | join(' ') }}
8{% endif %}
9{% if headnode is defined %}
10HEADNODE = {{ headnode }}
11{% endif %}
12{% if buildnode is defined %}
13BUILDNODE = {{ buildnode }}
14{% endif %}
15{% if deploy_docker_tag is defined %}
16DEPLOY_DOCKER_TAG = {{ deploy_docker_tag }}
17{% endif %}
18{% if config_cord_profile_dir is defined %}
19CONFIG_CORD_PROFILE_DIR = {{ config_cord_profile_dir }}
20{% endif %}
21
22# Targets and prerequisties
23{% if build_targets is defined %}
24BUILD_TARGETS = $(M)/{{ build_targets | join(" $(M)/") }}
25{% endif %}
26{% if vagrant_up_prereqs is defined %}
27VAGRANT_UP_PREREQS = $(M)/{{ vagrant_up_prereqs | join(" $(M)/") }}
28{% endif %}
29{% if cord_config_prereqs is defined %}
30CORD_CONFIG_PREREQS = $(M)/{{ cord_config_prereqs | join(" $(M)/") }}
31{% endif %}
32{% if copy_config_prereqs is defined %}
33COPY_CONFIG_PREREQS = $(M)/{{ copy_config_prereqs | join(" $(M)/") }}
34{% endif %}
35{% if prep_buildnode_prereqs is defined %}
36PREP_BUILDNODE_PREREQS = $(M)/{{ prep_buildnode_prereqs | join(" $(M)/") }}
37{% endif %}
38{% if prep_headnode_prereqs is defined %}
39PREP_HEADNODE_PREREQS = $(M)/{{ prep_headnode_prereqs | join(" $(M)/") }}
40{% endif %}
Zack Williams0a7ef162017-07-18 18:15:26 -070041{% if start_xos_prereqs is defined %}
42START_XOS_PREREQS = $(M)/{{ start_xos_prereqs | join(" $(M)/") }}
43{% endif %}
44{% if deploy_onos_prereqs is defined %}
45DEPLOY_ONOS_PREREQS = $(M)/{{ deploy_onos_prereqs | join(" $(M)/") }}
46{% endif %}
Zack Williamsce63eb02017-02-28 10:46:22 -070047