Pathogen and new bundles
git-svn-id: http://photonzero.com/dotfiles/trunk@65 23f722f6-122a-0410-8cef-c75bd312dd78
This commit is contained in:
parent
9b767aed56
commit
96a93bce9e
78 changed files with 10717 additions and 0 deletions
19
.vim/bundle/command-t/Makefile
Normal file
19
.vim/bundle/command-t/Makefile
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
rubyfiles := $(shell find ruby -name '*.rb')
|
||||
cfiles := $(shell find ruby -name '*.c')
|
||||
cheaders := $(shell find ruby -name '*.h')
|
||||
depends := $(shell find ruby -name depend)
|
||||
txtfiles := $(shell find doc -name '*.txt')
|
||||
vimfiles := $(shell find plugin -name '*.vim')
|
||||
|
||||
vimball: command-t.vba
|
||||
|
||||
command-t.vba: $(rubyfiles) $(cfiles) $(cheaders) $(depends) $(txtfiles) $(vimfiles)
|
||||
mkvimball $(basename $@) $^
|
||||
|
||||
.PHONY: spec
|
||||
spec:
|
||||
rspec spec
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm -f command-t.vba
|
||||
Loading…
Add table
Add a link
Reference in a new issue