diff options
author | Jan Nieuwenhuizen <janneke@gnu.org> | 2004-06-22 09:24:13 +0000 |
---|---|---|
committer | Jan Nieuwenhuizen <janneke@gnu.org> | 2004-06-22 09:24:13 +0000 |
commit | 6dfd27ec6f757c11a5e57354dd928ca936845556 (patch) | |
tree | a774e299511db7cecb0937fe0d1d745adad0e998 /vim | |
parent | a19e9968c751e4522d54498b90ca04c5a5ee147a (diff) |
*** empty log message ***
Diffstat (limited to 'vim')
-rw-r--r-- | vim/GNUmakefile | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/vim/GNUmakefile b/vim/GNUmakefile index 9d3dc74a6d..81772b86f4 100644 --- a/vim/GNUmakefile +++ b/vim/GNUmakefile @@ -20,19 +20,19 @@ include $(depth)/make/stepmake.make local-install: mkdir -p $(vimdir)/compiler - $(INSTALL) lilypond-compiler.vim $(vimdir)/compiler/lilypond.vim + $(INSTALL) -m 644 lilypond-compiler.vim $(vimdir)/compiler/lilypond.vim mkdir -p $(vimdir)/ftdetect - $(INSTALL) lilypond-ftdetect.vim $(vimdir)/ftdetect/lilypond.vim + $(INSTALL) -m 644 lilypond-ftdetect.vim $(vimdir)/ftdetect/lilypond.vim mkdir -p $(vimdir)/ftplugin - $(INSTALL) lilypond-ftplugin.vim $(vimdir)/ftplugin/lilypond.vim + $(INSTALL) -m 644 lilypond-ftplugin.vim $(vimdir)/ftplugin/lilypond.vim mkdir -p $(vimdir)/indent - $(INSTALL) lilypond-indent.vim $(vimdir)/indent/lilypond.vim + $(INSTALL) -m 644 lilypond-indent.vim $(vimdir)/indent/lilypond.vim mkdir -p $(vimdir)/syntax - $(INSTALL) lilypond-syntax.vim $(vimdir)/syntax/lilypond.vim + $(INSTALL) -m 644 lilypond-syntax.vim $(vimdir)/syntax/lilypond.vim local-uninstall: rm $(vimdir)/compiler/lilypond.vim |