forked from jmcnamara/xlsxwriter.lua
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathMakefile
More file actions
62 lines (43 loc) · 1.05 KB
/
Makefile
File metadata and controls
62 lines (43 loc) · 1.05 KB
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
.PHONY: docs test
all:
@echo "\tTo install (requires luarocks): sudo make install"
install:
@luarocks make
docs:
@make -C dev/docs html
html: docs
pdf:
@make -C dev/docs latexpdf
cleandocs:
@make -C dev/docs clean
alldocs: cleandocs docs pdf
@cp -r dev/docs/build/html docs
@cp -r dev/docs/build/latex/xlsxwriter_lua.pdf docs
pdf_release: pdf
@cp -r dev/docs/build/latex/xlsxwriter_lua.pdf docs
test:
@lua -v
@prove --exec=lua --ext=lua -r test/unit
test_unit:
@lua -v
@prove --exec=lua --ext=lua -r test/unit
test_comparison:
@py.test test/comparison/test*.py -v
testall: test_unit test_comparison
test5.1:
@lua5.1 -v
@prove --exec=lua5.1 --ext=lua -r test/unit
test5.2:
@lua5.2 -v
@prove --exec=lua5.2 --ext=lua -r test/unit
testluajit:
@luajit -v
@prove --exec=luajit --ext=lua -r test/unit
readthedocs:
@curl -X POST http://readthedocs.org/build/xlsxwriterlua
releasecheck:
@dev/release/release_check.sh
release: releasecheck
@git push origin master
@git push --tags
@curl -X POST http://readthedocs.org/build/xlsxwriterlua