You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
396 B
25 lines
396 B
SCRIPT=./OmniTickle.tcl |
|
VIM_PLUGIN=OmniTickle.vim |
|
DIR=plugin |
|
BUNDLE_FILE=TclCompletion.vim |
|
|
|
all: bundle |
|
|
|
bundle: |
|
mkdir -p $(DIR) |
|
|
|
$(SCRIPT) $(DIR) |
|
|
|
echo "\" Created: $$(date '+%C%y-%m-%d')" > $(DIR)/$(BUNDLE_FILE) |
|
|
|
cat $(VIM_PLUGIN) >> $(DIR)/$(BUNDLE_FILE) |
|
cat $(DIR)/*CompletionList.vim >> $(DIR)/$(BUNDLE_FILE) |
|
|
|
rm -f $(DIR)/*CompletionList.vim |
|
|
|
tags: |
|
$(SCRIPT) |
|
|
|
clean: |
|
rm -rf $(DIR) |
|
|
|
|