forked from christiangoltz/shaape
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
58 lines (45 loc) · 1.24 KB
/
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
56
57
58
MKDIR = mkdir -p
CP = cp -r
ZIP = zip
RM = rm -rf
CD = cd
TEST_BIN = nosetests
TEST_OPTS = --with-coverage --cover-package=shaape --cover-branches --cover-html
TEST_DIR = shaape/tests
PROFILE_BIN = python -m cProfile
PROFILE_FILE = prof_stats
PROFILE_INPUT = shaape/tests/input/profiling_input.shaape
PROFILE_OPTS = -s time shaape/shaape.py $(PROFILE_INPUT) > $(PROFILE_FILE)
DOC_BIN = epydoc
DOC_OPTS = --graph all
SOURCES = $(wildcard shaape/*.py)
ASCIIDOC_FILTER = asciidoc-filter/shaape-filter.conf
BUILD_DIR = build
.PHONY: install install-filter clean doc tests
all:
install:
easy_install ./
install-filter: install
$(RM) $(BUILD_DIR)
$(MKDIR) $(BUILD_DIR)
$(CP) $(ASCIIDOC_FILTER) $(BUILD_DIR)
$(CD) $(BUILD_DIR) && $(ZIP) shaape.zip ./* -r
-asciidoc --filter remove shaape
asciidoc --filter install $(BUILD_DIR)/shaape.zip
readme: README
asciidoc -a data-uri README
tests:
$(TEST_BIN) $(TEST_OPTS) $(TEST_DIR)
profile:
$(PROFILE_BIN) $(PROFILE_OPTS)
doc:
$(DOC_BIN) $(DOC_OPTS) $(SOURCES)
upload-pipy:
python setup.py sdist upload
clean:
$(RM) $(BUILD_DIR)
$(RM) shaape/*.pyc shaape/tests/*.pyc
$(RM) cover .coverage
$(RM) html
$(RM) shaape/tests/generated_images/*
$(RM) shaape/tests/input/empty.shaape.png