mirror of
https://github.com/gryf/pentadactyl-pm.git
synced 2026-01-06 22:34:18 +01:00
This also adds a quick 'n' dirty build mechanism for creating the Vimballs. Unfortunately, these aren't particularly amenable to being created in a batch process. Dr Chip has created a small C program for this but that would be a silly dependency.
10 lines
205 B
Makefile
10 lines
205 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
|
|
|
|
all: vimball
|
|
|
|
clean:
|
|
rm -f ${VIMBALL}
|