forked from petercorke/robotics-toolbox-python
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
40 lines (34 loc) · 802 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
FILES = utility.py \
transform.py \
manipblty.py \
Quaternion.py \
jacobian.py \
trajectory.py \
kinematics.py \
dynamics.py \
wtrans.py \
Link.py \
Robot.py \
plot.py \
puma560.py \
puma560akb.py \
stanford.py \
phantomx.py \
twolink.py \
fourlink2d.py \
fourlink3d.py \
parsedemo.py \
testparser.py
PFILES = $(addprefix robot/, $(FILES))
VERSION = $(shell ./getvers.sh)
vers:
@echo "RTB for Python version in setup.py is $(VERSION)"
all:
@echo "RTB for Python version in setup.py is $(VERSION)"
# Note: Using epydoc to produce code documentation is only
# advisable after refinements have been made to import
# statements to eleminate inclusion of documentation
# for non-robot module code.
doc:
epydoc $(PFILES)
zip -r rtb4python-doc-$(VERSION) html