mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-04 17:34:12 +01:00
* The stdin - wasn't needed. However, an ||true is now used to prevent Makefile from erroring out (I'm sure there's a better way). * muttatorrc was spelled muttatororrc; fixed now.
10 lines
213 B
Makefile
10 lines
213 B
Makefile
VIMBALL = vimperator.vba
|
|
|
|
vimball: mkvimball.txt syntax/vimperator.vim ftdetect/vimperator.vim
|
|
echo '%MkVimball! ${VIMBALL} .' | vim -u NORC -N -e -s mkvimball.txt || true
|
|
|
|
all: vimball
|
|
|
|
clean:
|
|
rm -f ${VIMBALL}
|