Skip to content

Commit bf26b20

Browse files
committed
Adding makefile
1 parent 77a60bb commit bf26b20

File tree

4 files changed

+31
-3
lines changed

4 files changed

+31
-3
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
tags
2+
*.swp

Makefile

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
#
2+
# Makefile
3+
# For wmgraphviz.vim
4+
#
5+
# Create by Wannes Meert on 12/07/10.
6+
#
7+
8+
.PHONY : dist
9+
10+
DISTFILES=doc/wmgraphviz.txt ftplugin/dot.vim
11+
DIR=wmgraphviz.vim.git
12+
DIST=wmgraphviz.vim
13+
14+
all:
15+
@echo No default action, you probably want to use \'dist\'.
16+
17+
dist:
18+
echo ${DISTFILES} > MANIFEST;
19+
cat MANIFEST | tr ' ' '\n' | sed -e "s/^/${DIST}\//g" > MANIFEST;
20+
(cd ..; ln -s ${DIR} ${DIST});
21+
(cd ..; tar -czvf ${DIR}/${DIST}.tgz `cat ${DIR}/MANIFEST`);
22+
(cd ..; rm ${DIST});
23+
rm MANIFEST;
24+
25+

README.md

+4-3
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,13 @@ Summary
55
-------
66
Vim plugin for [Graphviz](http://www.graphviz.org), by Wannes Meert.
77

8-
Actions
9-
-------
8+
Features
9+
--------
1010

1111
* compiling: `:GraphvizCompile`, `<Leader>ll`
1212
* viewing: `:GraphvizView`, `<Leader>lv`
1313
* omnicompletion: `<C-X><C-O>`
14+
* quickfix window for errors and warnings
1415

1516
Settings
1617
--------
@@ -23,7 +24,7 @@ Settings
2324
Dependencies
2425
------------
2526

26-
* Graphiz's `dot`.
27+
* [Graphiz](http://www.graphgiz.org)'s `dot`.
2728

2829
Contact
2930
-------

ftplugin/dot.vim

+1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
" wmgraphviz.vim plugin
22
" Author: Wannes Meert
33
4+
" Version: 1.0
45

56
if exists('s:loaded')
67
finish

0 commit comments

Comments
 (0)