specky/Makefile
author Mahlon E. Smith <mahlon@martini.nu>
Sat, 18 Dec 2010 23:38:55 -0800
branchvim-stuff
changeset 20 09c4f575f627
parent 11 a9ebb6c22d14
permissions -rw-r--r--
add files the Makefile
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
     1
PLUGIN = specky
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
     2
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
     3
SOURCE =  syntax/rdoc.vim
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
     4
SOURCE += syntax/specrun.vim
20
09c4f575f627 add files the Makefile
Mahlon E. Smith <mahlon@martini.nu>
parents: 11
diff changeset
     5
SOURCE += syntax/specrun1.vim
5
3346aa8d5364 Add snippets and rspec syntax highlights.
mahlon
parents: 2
diff changeset
     6
SOURCE += syntax/rspec.vim
3346aa8d5364 Add snippets and rspec syntax highlights.
mahlon
parents: 2
diff changeset
     7
SOURCE += ftdetect/rspec.vim
6
31d00503e038 * Small documentation updates
mahlon
parents: 5
diff changeset
     8
SOURCE += ftplugin/rspec.vim
2
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
     9
SOURCE += doc/specky.txt
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    10
SOURCE += plugin/specky.vim
5
3346aa8d5364 Add snippets and rspec syntax highlights.
mahlon
parents: 2
diff changeset
    11
SOURCE += snippets/rspec.snippets
20
09c4f575f627 add files the Makefile
Mahlon E. Smith <mahlon@martini.nu>
parents: 11
diff changeset
    12
SOURCE += ruby/specky_formatter.rb
09c4f575f627 add files the Makefile
Mahlon E. Smith <mahlon@martini.nu>
parents: 11
diff changeset
    13
2
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    14
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    15
${PLUGIN}.vba: ${SOURCE}
11
a9ebb6c22d14 Alter the build Makefiles to implement a suggestion from Antoine Mechelynck.
Mahlon E. Smith <mahlon@martini.nu>
parents: 6
diff changeset
    16
	- vim --cmd 'let g:plugin_name="${PLUGIN}"' -S build.vim -cq\!
2
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    17
	gzip ${PLUGIN}.vba
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    18
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    19
install:
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    20
	rsync -Rv ${SOURCE} ${HOME}/.vim/
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    21
6b33188f1694 Moving Specky into a Vim subfolder.
mahlon
parents:
diff changeset
    22
clean:
11
a9ebb6c22d14 Alter the build Makefiles to implement a suggestion from Antoine Mechelynck.
Mahlon E. Smith <mahlon@martini.nu>
parents: 6
diff changeset
    23
	rm ${PLUGIN}.vba.gz