forked from Mrkebubun/sputnik
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
52 lines (37 loc) · 874 Bytes
/
Makefile
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
#
# Copyright 2014 Mimetic Markets, Inc.
#
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
#
ifndef PROFILE
export PROFILE=$(realpath install/profiles/git)
endif
.PHONY: config deps dist build install upgrade
all: dist
clean:
rm -rf dist
build-deps:
install/install.py build-deps
deps:
install/install.py deps
config:
install/install.py config
build:
install/install.py build
dist: config build
install/install.py dist
test:
cd testing && make no_ui
clients_tar:
mkdir -p .tar/clients
cp -r clients/python/* .tar/clients
cd .tar && tar -cf ../clients.tar clients
rm -r .tar
tar: dist
install/install.py tar
install: deps
install/install.py install
upgrade: deps
install/install.py upgrade