Skip to content

Commit 5d7d225

Browse files
committed
Add Makefile to compile js/py files
1 parent deec9bd commit 5d7d225

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

Makefile

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
VIM_COMPILER:=vim -N --cmd 'set rtp+=.' -c q -u
2+
3+
all: js/vimlparser.js py/vimlparser.py
4+
5+
js/vimlparser.js: autoload/vimlparser.vim js/jscompiler.vim js/vimlfunc.js
6+
$(VIM_COMPILER) js/jscompiler.vim
7+
8+
py/vimlparser.py: autoload/vimlparser.vim py/pycompiler.vim py/vimlfunc.py
9+
$(VIM_COMPILER) py/pycompiler.vim

0 commit comments

Comments
 (0)