Updates docs for SR1 with final revision
[genesis.git] / fuel / build / patch-packages / 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 := 
12 SUBCLEAN = $(addsuffix .clean,$(SUBDIRS))
13
14 .PHONY: $(SUBDIRS) $(SUBCLEAN) clean
15 $(SUBDIRS):
16         @mkdir -p release/packages
17         ORIGISO=$(ORIGISO) REVSTATE=$(REVSTATE) $(MAKE) -C $@ -f Makefile release
18
19 release: $(SUBDIRS)
20         @echo $(ORIGISO)
21
22 clean: $(SUBCLEAN)
23         @rm -Rf release
24
25 $(SUBCLEAN): %.clean:
26         $(MAKE) -C $* -f Makefile clean