Update of endpoint addresses
[fuel.git] / build / f_isoroot / f_bootstrap / Makefile
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 TOP := $(shell pwd)
12
13 .PHONY: all
14 all:
15         @mkdir -p release/opnfv/bootstrap/pre.d
16         @mkdir -p release/opnfv/bootstrap/post.d
17         @mkdir -p release/usr/local/sbin
18         @cp pre-scripts/* release/opnfv/bootstrap/pre.d
19         @cp post-scripts/* release/opnfv/bootstrap/post.d
20         @cp bootstrap_admin_node.sh release
21         @cp bootstrap_admin_node.sh.orig release
22
23 .PHONY: clean
24 clean:
25         @rm -rf release
26
27 .PHONY: release
28 release:all
29         @cp -Rvp release/* ../release
30
31 #############################################################################
32 # Cache operations - only used when building through ci/build.sh
33 #############################################################################
34
35 # Clean local data related to caching - called prior to ordinary build
36 .PHONY: clean-cache
37 clean-cache: clean
38         @echo "clean-cache not implemented"
39
40 # Try to download cache - called prior to ordinary build
41 .PHONY: get-cache
42 get-cache:
43         @echo "get-cache not implemented"
44
45 # Store cache if not already stored - called after ordinary build
46 .PHONY: put-cache
47 put-cache:
48         @echo "put-cache not implemented"