39 lines
1.1 KiB
Makefile
39 lines
1.1 KiB
Makefile
SPARKUP_PY=sparkup
|
|
VERSION=`date '+%Y%m%d'`
|
|
README=README.md
|
|
|
|
.PHONY: all textmate vim textmate-dist vim-dist plugins plugins-pre generic all-dist
|
|
all: plugins
|
|
|
|
plugins-pre:
|
|
mkdir -p distribution
|
|
|
|
plugins: plugins-pre all-dist
|
|
|
|
textmate-dist: textmate
|
|
cd TextMate && zip -9r ../distribution/sparkup-textmate-${VERSION}.zip . && cd ..
|
|
|
|
vim-dist: vim
|
|
cd vim && zip -9r ../distribution/sparkup-vim-${VERSION}.zip . && cd ..
|
|
|
|
generic-dist: generic
|
|
cd generic && zip -9r ../distribution/sparkup-generic-${VERSION}.zip . && cd ..
|
|
|
|
all-dist:
|
|
zip -9r distribution/sparkup-${VERSION}.zip generic vim textmate README.md -x */sparkup-readme.txt
|
|
cp distribution/sparkup-${VERSION}.zip distribution/sparkup-latest.zip
|
|
|
|
generic:
|
|
cat sparkup.py > generic/sparkup
|
|
chmod +x generic/sparkup
|
|
#cp ${README} generic/sparkup-readme.txt
|
|
|
|
textmate:
|
|
mkdir -p TextMate/Sparkup.tmbundle/Support
|
|
cp ${SPARKUP_PY} TextMate/Sparkup.tmbundle/Support/sparkup.py
|
|
#cp ${README} TextMate/sparkup-readme.txt
|
|
|
|
vim:
|
|
mkdir -p vim/ftplugin/html
|
|
cp ${SPARKUP_PY} vim/ftplugin/html/sparkup.py
|
|
#cp ${README} vim/sparkup-readme.txt
|