Disabling the ODL plugin waiting for Fuel 7 uplift
[fuel.git] / fuel / build / f_isoroot / 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 SUBDIRS = f_kscfg f_bootstrap f_repobuild
12 # Disable f_odlplugin waiting for Fuel 7 uplift
13 #SUBDIRS += f_odlpluginbuild
14 SUBCLEAN = $(addsuffix .clean,$(SUBDIRS))
15
16 .PHONY: all
17 all:    $(SUBDIRS)
18
19 .PHONY: $(SUBDIRS)
20 $(SUBDIRS):
21         @mkdir -p release
22         $(MAKE) -C $@ -f Makefile release
23
24 .PHONY: clean $(SUBCLEAN)
25 clean: $(SUBCLEAN)
26         @rm -Rf release
27
28 $(SUBCLEAN): %.clean:
29         $(MAKE) -C $* -f Makefile clean
30
31 .PHONY: release
32 release: $(SUBDIRS)
33         @cp -Rvp release/* ../release/isoroot
34
35 include cache.mk