-
-
Notifications
You must be signed in to change notification settings - Fork 766
Expand file tree
/
Copy pathMakefile
More file actions
31 lines (25 loc) · 582 Bytes
/
Makefile
File metadata and controls
31 lines (25 loc) · 582 Bytes
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
PYMODE = $(CURDIR)/pymode
LIBS = $(PYMODE)/libs
PYLAMA = $(LIBS)/pylama
.PHONY: clean
clean:
find . -name "*.pyc" -delete
# Temporary disable rope tests on Travis
.PHONY: travis
travis:
rm -rf t/rope.vim
rake test
.PHONY: test
test:
bundle install
rm -rf $(CURDIR)/.ropeproject
rake test
.PHONY: pylama
pylama:
rm -rf $(PYLAMA)
make $(PYLAMA)
make $(PYLAMA)/lint/pylama_pylint
$(PYLAMA):
cp -r ~/Dropbox/projects/pylama/pylama $(PYLAMA)
$(PYLAMA)/lint/pylama_pylint:
cp -r ~/Dropbox/projects/pylama/plugins/pylama_pylint/pylama_pylint/ $(PYLAMA)/lint/pylama_pylint