-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMakefile
More file actions
50 lines (39 loc) · 1.11 KB
/
Makefile
File metadata and controls
50 lines (39 loc) · 1.11 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
### Makefile ---
## Author: shell@debian.debian
## Version: $Id: Makefile,v 0.0 2010/01/20 17:13:26 shell Exp $
## Keywords:
## X-URL:
all: install
install:
ln -sf $(shell pwd)/lisp/emacs.el ~/.emacs
clean:
find . -name '*.elc' -delete
find . -name '*.pyc' -delete
install-venv:
mkdir -p pyenv
virtualenv pyenv
pyenv/bin/pip install --upgrade rope
pyenv/bin/pip install --upgrade jedi
pyenv/bin/pip install --upgrade importmagic
pyenv/bin/pip install --upgrade autopep8
pyenv/bin/pip install --upgrade yapf
install-elpa:
emacs -q --no-splash --script lisp/install.el
clean-elpa:
rm -rf elpa
clean-venv:
rm -rf pyenv
install-deb:
sudo aptitude install exuberant-ctags flake8
install-golang:
go get -u golang.org/x/tools/cmd/goimports
go install golang.org/x/tools/cmd/goimports
go get -u github.com/mdempsky/gocode
go install github.com/mdempsky/gocode
go get -u github.com/rogpeppe/godef
go install github.com/rogpeppe/godef
go get -u golang.org/x/tools/cmd/guru
go install golang.org/x/tools/cmd/guru
go get -u github.com/kisielk/errcheck
go install github.com/kisielk/errcheck
### Makefile ends here