blob: 64ad34c98c9c57962d93697ef29d491d05af66e2 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#
# Copyright (C) 2014, Jaguar Land Rover
#
# This program is licensed under the terms and conditions of the
# Mozilla Public License, version 2.0. The full text of the
# Mozilla Public License is at https://www.mozilla.org/MPL/2.0/
#
#
# Makefile for the RVI node.
#
.PHONY: all deps compile clean rpm rpmclean test xref ci escript
SCRIPTS=scripts/setup_gen \
scripts/author
VERSION=0.5.0
all: deps compile escript
deps:
./rebar get-deps
compile:
./rebar compile
escript: compile ${SCRIPTS}
recomp:
./rebar compile skip_deps=true
scripts/setup_gen: deps/setup/setup_gen
cp deps/setup/setup_gen scripts/
scripts/author: components/authorize/author
cp components/authorize/author scripts/
components/authorize/author:
(cd components/authorize && make escript)
clean: rpmclean
./rebar clean
rpmclean:
rm -rf ./rpm/BUILD/* \
./rpm/BUILDROOT/* \
./rpm/RPMS/* \
./rpm/SOURCES/* \
./rpm/SRPMS/*
xref: compile
ERL_LIBS=$(PWD):$(PWD)/components:$(PWD)/deps rebar xref skip_deps=true
ci: xref test
test: compile escript
./rebar ct skip_deps=true
# Create a SOURCES tarball for RPM
rpm_tarball: rpmclean clean
tar czf /tmp/rvi_core-$(VERSION).tgz BUILD.md CONFIGURE.md doc \
LICENSE Makefile README.md rebar rebar.config rel \
RELEASE.md rpm scripts/setup_gen scripts/rvi \
scripts/rvi.service scripts/rvi.sh \
components priv/config/rvi_sample.config scripts/rvi_instball.sh src \
TODO
mv /tmp/rvi-$(VERSION).tgz ./rpm/SOURCES/
rpm: rpm_tarball
rpmbuild --define "_topdir $$PWD/rpm" -ba rpm/SPECS/rvi-$(VERSION).spec
install: # deps compile
./scripts/rvi_install.sh $(DESTDIR)/opt/rvi
install --mode=0755 -d $(DESTDIR)/etc/opt/rvi/
install --mode=0644 priv/config/rvi_sample.config $(DESTDIR)/etc/opt/rvi/rvi_sample.config
install --mode=0644 priv/config/rvi_common.config $(DESTDIR)/opt/rvi/rvi_core/rvi_common.config
|