Refactoring build system to support Fuel 6.1
[genesis.git] / fuel / build / config.mk
1 ##############################################################################
2 # Copyright (c) 2015 Ericsson AB and others.
3 # stefan.k.berg@ericsson.com
4 # jonas.bjurel@ericsson.com
5 # All rights reserved. This program and the accompanying materials
6 # are made available under the terms of the Apache License, Version 2.0
7 # which accompanies this distribution, and is available at
8 # http://www.apache.org/licenses/LICENSE-2.0
9 ##############################################################################
10
11 ODL_MAIN_REPO := https://git.opendaylight.org/gerrit/p/controller.git
12 ODL_MAIN_TAG := release/helium
13
14 FUEL_MAIN_REPO := https://github.com/stackforge/fuel-main
15 FUEL_MAIN_TAG = stable/6.1
16
17 DOCKER_REPO := http://get.docker.com/builds/Linux/x86_64
18 DOCKER_TAG := docker-latest
19
20 .PHONY: get-odl-repo
21 get-odl-repo:
22         @echo $(ODL_MAIN_REPO) $(ODL_MAIN_TAG)
23
24 .PHONY: get-fuel-repo
25 get-fuel-repo:
26         @echo $(FUEL_MAIN_REPO) $(FUEL_MAIN_TAG)
27