-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile
56 lines (37 loc) · 790 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
52
53
54
55
#
# A simple and stupid Makefile for EpyMC.
#
# This is mainly targeted at lazy devlopers (like me) that
# want to type less, use autocompletion or do not want to
# learn the python setup syntax.
#
# Usage:
#
# make <cmd> to build using the default python interpreter
# make <cmd> PY=pythonX to build using the specified python interpreter
#
PY = python3
.PHONY: build
build:
$(PY) setup.py build
.PHONY: themes
themes:
$(PY) setup.py build_themes
.PHONY: install
install:
$(PY) setup.py install
.PHONY: uninstall
uninstall:
$(PY) setup.py uninstall
.PHONY: clean
clean:
$(PY) setup.py clean --all
.PHONY: update_po
update_po:
$(PY) setup.py update_po
.PHONY: check_po
check_po:
$(PY) setup.py check_po
.PHONY: develop
develop:
$(PY) setup.py develop