From e234a4fdc7b8ec664a85859499de64b7aebb34f4 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 7 Oct 2013 22:06:08 +0200 Subject: [PATCH] Makefile: use sparkup.py as source (changed recently) TODO: should use a build dir; `generic` might not exist --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 29598e4..7b3f246 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,7 @@ -SPARKUP_PY=sparkup +# Makefile for sparkup distribution +# TODO: this should use a separate build dir to copy SPARKUP_PY into. +# SPARKUP_PY should not reside in the Vim runtime dir (getting not updated via Git!) +SPARKUP_PY=sparkup.py VERSION=`date '+%Y%m%d'` README=README.md @@ -24,7 +27,7 @@ all-dist: cp distribution/sparkup-${VERSION}.zip distribution/sparkup-latest.zip generic: - cat sparkup.py > generic/sparkup + cat ${SPARKUP_PY} > generic/sparkup chmod +x generic/sparkup #cp ${README} generic/sparkup-readme.txt