-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathMakefile
52 lines (40 loc) · 1004 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
test-all: test-python test-jython test-integration test-launcher
test-python:
py.test
test-jython:
export CLASSPATH=$(HOME)/lib/Jama-1.0.3.jar:$(CLASSPATH); echo $$CLASSPATH; $(HOME)/jython/bin/py.test
test-integration:
py.test --boxed integration_checks.py
test-launcher:
./diffcalc.py --help
./diffcalc.py --modules
./diffcalc.py --non-interactive --python sixcircle
install-jython:
./install-jython-environment.sh
doc-source:
./diffcalc.py --non-interactive --make-manuals-source
doc-html:
cd doc; make html
doc-pdf:
cd doc; make pdf
doc-all:
cd doc; make all
doc-clean:
cd doc; make clean
help:
@echo
@echo "Please use \`make <target>' where <target> is one of"
@echo
@echo " test-all"
@echo " test-python"
@echo " test-jython"
@echo " test-integration"
@echo " test-launcher"
@echo " install-jython"
@echo
@echo " doc-source : to expand *_template.rst to *.rst"
@echo " doc-html"
@echo " doc-pdf"
@echo " doc-all"
@echo " doc-clean"
@echo