diff options
author | Heikki Junes <heikki.junes@hut.fi> | 2004-03-22 16:16:48 +0000 |
---|---|---|
committer | Heikki Junes <heikki.junes@hut.fi> | 2004-03-22 16:16:48 +0000 |
commit | cb85d1c77149d3f3cc12dcd3829f85195efe14b7 (patch) | |
tree | b02fa2daa93dae20635f471b732e1488fe914c6c /vim | |
parent | 04ae3a59a98ccdfa95db5664c88223a5805dc3db (diff) |
* config.make.in: add vimdir.
* vim/GNUmake add local-install.
Diffstat (limited to 'vim')
-rw-r--r-- | vim/GNUmakefile | 20 |
1 files changed, 18 insertions, 2 deletions
diff --git a/vim/GNUmakefile b/vim/GNUmakefile index b1663ef4c1..b645e678c3 100644 --- a/vim/GNUmakefile +++ b/vim/GNUmakefile @@ -1,6 +1,22 @@ depth = .. -# elispdir defined in config.make +# vimdir defined in config.make include $(depth)/make/stepmake.make -EXTRA_DIST_FILES = $(wildcard *.vim) +local-install: + mkdir -p $(vimdir)/compiler + $(INSTALL) lilypond-compiler.vim $(vimdir)/compiler/lilypond.vim + + mkdir -p $(vimdir)/ftdetect + $(INSTALL) lilypond-ftdetect.vim $(vimdir)/ftdetect/lilypond.vim + + mkdir -p $(vimdir)/ftplugin + $(INSTALL) lilypond-ftplugin.vim $(vimdir)/ftplugin/lilypond.vim + + mkdir -p $(vimdir)/indent + $(INSTALL) lilypond-indent.vim $(vimdir)/indent/lilypond.vim + + mkdir -p $(vimdir)/syntax + $(INSTALL) lilypond-syntax.vim $(vimdir)/syntax/lilypond.vim + +EXTRA_DIST_FILES=filetype.vim |