Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJacob Thornton <jacobthornton@gmail.com>2012-01-28 09:06:09 +0400
committerJacob Thornton <jacobthornton@gmail.com>2012-01-28 09:06:09 +0400
commit15d3a4797f3435d1531804369df87fa4e574b874 (patch)
tree3a92b29cc38accd64fd1c81467445201accbf438 /Makefile
parent4e191c423d2d1e834a4cb57ae246d03a82272ee4 (diff)
simplify build process more - remove really annoying date.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 4 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index f2213103aa..879d594409 100644
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,3 @@
-VERSION=2.0.0
BOOTSTRAP = ./docs/assets/css/bootstrap.css
BOOTSTRAP_LESS = ./less/bootstrap.less
BOOTSTRAP_RESPONSIVE = ./docs/assets/css/bootstrap-responsive.css
@@ -12,16 +11,11 @@ WATCHR ?= `which watchr`
#
build:
- @@if test ! -z ${LESS_COMPRESSOR}; then \
- sed -e 's/@VERSION/'"v${VERSION}"'/' -e 's/@DATE/'"`date`"'/' <${BOOTSTRAP_LESS} >${BOOTSTRAP_LESS}.tmp; \
- lessc ${BOOTSTRAP_LESS}.tmp > ${BOOTSTRAP}; \
- rm -f ${BOOTSTRAP_LESS}.tmp; \
- sed -e 's/@VERSION/'"v${VERSION}"'/' -e 's/@DATE/'"`date`"'/' <${BOOTSTRAP_RESPONSIVE_LESS} >${BOOTSTRAP_RESPONSIVE_LESS}.tmp; \
- lessc ${BOOTSTRAP_RESPONSIVE_LESS}.tmp > ${BOOTSTRAP_RESPONSIVE}; \
- rm -f ${BOOTSTRAP_RESPONSIVE_LESS}.tmp; \
+ @if test ! -z ${LESS_COMPRESSOR}; then \
+ lessc ${BOOTSTRAP_LESS} > ${BOOTSTRAP}; \
+ lessc ${BOOTSTRAP_RESPONSIVE_LESS} > ${BOOTSTRAP_RESPONSIVE}; \
node docs/build; \
cp img/* docs/assets/img/; \
- echo "Bootstrap successfully built! - `date`"; \
else \
echo "You must have the LESS compiler installed in order to build Bootstrap."; \
echo "You can install it by running: npm install less -g"; \
@@ -32,7 +26,7 @@ build:
#
watch:
- @@if test ! -z ${WATCHR}; then \
+ @if test ! -z ${WATCHR}; then \
echo "Watching less files..."; \
watchr -e "watch('less/.*\.less') { system 'make' }"; \
else \
@@ -40,5 +34,4 @@ watch:
echo "You can install it by running: gem install watchr"; \
fi
-
.PHONY: build watch \ No newline at end of file