~zeitgeist-dataproviders/zeitgeist-datasources/git

« back to all changes in this revision

Viewing changes to vim/Makefile.am

  • Committer: Michal Hruby
  • Date: 2010-06-29 20:40:15 UTC
  • Revision ID: git-v1:f888d839e8e43b53dffd677853e27aee6936c729
Merge in vim plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
PLUGIN_FILES = zeitgeist.vim
 
2
 
 
3
vimplugindir = $(datadir)/vim/vim72/plugin
 
4
vimplugin_DATA = $(PLUGIN_FILES)
 
5
 
 
6
# we want to allow also local install
 
7
VIM_PLUGIN_HOME_DIR = ~/.vim/plugin
 
8
 
 
9
local-install:
 
10
        mkdir -p $(VIM_PLUGIN_HOME_DIR)
 
11
        cp $(PLUGIN_FILES) $(VIM_PLUGIN_HOME_DIR)
 
12
 
 
13
local-uninstall:
 
14
        rm $(VIM_PLUGIN_HOME_DIR)/$(PLUGIN_FILES)
 
15