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-27 10:05:45 +0400
committerJacob Thornton <jacobthornton@gmail.com>2012-01-27 10:05:45 +0400
commited64276e5be1bbf808f2ab1451aa02522cc3aff0 (patch)
tree13212cdc7db31d90167c2b91085c4ef8ea2a85ae /Makefile
parentdc2deb9a1b1995bbabee91bfd579d9b466fe78f2 (diff)
move doc building into base make method + build bootstrap to doc assets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile20
1 files changed, 5 insertions, 15 deletions
diff --git a/Makefile b/Makefile
index 337baf03fa..127d6affe0 100644
--- a/Makefile
+++ b/Makefile
@@ -1,28 +1,25 @@
VERSION=2.0.0
-BOOTSTRAP = ./bootstrap.css
-BOOTSTRAP_MIN = ./bootstrap.min.css
+BOOTSTRAP = ./docs/assets/css/bootstrap.css
BOOTSTRAP_LESS = ./less/bootstrap.less
-BOOTSTRAP_RESPONSIVE = ./bootstrap-responsive.css
-BOOTSTRAP_RESPONSIVE_MIN = ./bootstrap-responsive.min.css
+BOOTSTRAP_RESPONSIVE = ./docs/assets/css/bootstrap-responsive.css
BOOTSTRAP_RESPONSIVE_LESS = ./less/responsive.less
LESS_COMPRESSOR ?= `which lessc`
UGLIFY_JS ?= `which uglifyjs`
WATCHR ?= `which watchr`
#
-# Build less files
+# Build less files + docs
#
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}; \
- lessc ${BOOTSTRAP_LESS}.tmp > ${BOOTSTRAP_MIN} --compress; \
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}; \
- lessc ${BOOTSTRAP_RESPONSIVE_LESS}.tmp > ${BOOTSTRAP_RESPONSIVE_MIN} --compress; \
rm -f ${BOOTSTRAP_RESPONSIVE_LESS}.tmp; \
+ node docs/build; \
echo "Bootstrap successfully built! - `date`"; \
else \
echo "You must have the LESS compiler installed in order to build Bootstrap."; \
@@ -42,12 +39,5 @@ watch:
echo "You can install it by running: gem install watchr"; \
fi
-#
-# Build docs from templates
-#
-
-docs:
- @ node docs/build
-
-.PHONY: build watch docs \ No newline at end of file
+.PHONY: build watch \ No newline at end of file