summaryrefslogtreecommitdiffstats
path: root/build/Makefile
blob: 01db0c105c9f1f6d032e77d05453ab876d709c1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#
# Copyright (c) 2016 Ericsson and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
OPNFV_RELEASE=$(shell echo $(shell date -u +"%Y%m%d"))
GLUON_REPO=https://github.com/openstack/gluon.git
GLUON_BRANCH=master
GLUON_VER=$(shell grep '^Version:' $(shell pwd)/rpm_specs/gluon.spec | head -n 1 | awk '{ print $$2 }')
GLUON_REL=$(shell grep 'define release' $(shell pwd)/rpm_specs/gluon.spec | head -n 1 | awk '{ print $$3 }')_$(OPNFV_RELEASE)
GLUON_TAR=gluon.tar.gz
GLUON_RPM=noarch/gluon-$(GLUON_VER)-$(GLUON_REL).noarch.rpm

.PHONY: all

all: gluon

.PHONY: gluon
gluon: $(GLUON_RPM)

.PHONY: clean
clean: clean-gluon

.PHONY: clean-gluon
clean-gluon:
	rm -rf BUILDROOT
	rm -rf noarch
	rm -f $(GLUON_TAR)
	rm -f openstack-proton-server.service
	rm -f openstack-proton-shim-server.service
	rm -rf gluon-$(GLUON_VER)

$(GLUON_TAR):
	@echo cloning Gluon git repo
	git clone $(GLUON_REPO) -b $(GLUON_BRANCH) gluon-$(GLUON_VER)
	tar czf gluon.tar.gz gluon-$(GLUON_VER)

$(GLUON_RPM): $(GLUON_TAR)
	@echo building Gluon RPM
	rpmbuild --clean -bb --target noarch rpm_specs/gluon.spec -D '_topdir %(echo `pwd`)' -D '_builddir %(echo `pwd`)' -D '_sourcedir %(echo `pwd`)' -D %'_rpmdir %(echo `pwd`)' -D '_specdir %(echo `pwd`)' -D '_srcrpmdir %(echo `pwd`)'