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-24 02:14:16 +0400
committerJacob Thornton <jacobthornton@gmail.com>2012-01-24 02:14:16 +0400
commitf764aee4b919c28974dba7b91edac9a04172ba25 (patch)
tree1499bc8475fde954d88bbd0f284bc9906488db8f /Makefile
parent1209a3756c88043008950f74dd287b837e00f7d8 (diff)
add templates for doc generation
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile35
1 files changed, 16 insertions, 19 deletions
diff --git a/Makefile b/Makefile
index 0dddb13dd0..05ac491684 100644
--- a/Makefile
+++ b/Makefile
@@ -6,6 +6,10 @@ LESS_COMPESSOR ?= `which lessc`
UGLIFY_JS ?= `which uglifyjs`
WATCHR ?= `which watchr`
+#
+# Build less files
+#
+
build:
@@if test ! -z ${LESS_COMPESSOR}; then \
sed -e 's/@VERSION/'"v${VERSION}"'/' -e 's/@DATE/'"`date`"'/' <${BOOTSTRAP_LESS} >${BOOTSTRAP_LESS}.tmp; \
@@ -18,24 +22,9 @@ build:
echo "You can install it by running: npm install less -g"; \
fi
-uglify:
- @@if test ! -z ${UGLIFY_JS}; then \
- mkdir -p js/min; \
- uglifyjs -o js/min/bootstrap-alerts.js js/bootstrap-alert.js;\
- uglifyjs -o js/min/bootstrap-buttons.js js/bootstrap-button.js;\
- uglifyjs -o js/min/bootstrap-carousel.js js/bootstrap-carousel.js;\
- uglifyjs -o js/min/bootstrap-collapse.js js/bootstrap-collapse.js;\
- uglifyjs -o js/min/bootstrap-dropdown.js js/bootstrap-dropdown.js;\
- uglifyjs -o js/min/bootstrap-modal.js js/bootstrap-modal.js;\
- uglifyjs -o js/min/bootstrap-popover.js js/bootstrap-popover.js;\
- uglifyjs -o js/min/bootstrap-scrollspy.js js/bootstrap-scrollspy.js;\
- uglifyjs -o js/min/bootstrap-tabs.js js/bootstrap-tab.js;\
- uglifyjs -o js/min/bootstrap-transitions.js js/bootstrap-transition.js;\
- uglifyjs -o js/min/bootstrap-tooltip.js js/bootstrap-tooltip.js;\
- else \
- echo "You must have the UGLIFYJS minifier installed in order to minify Bootstrap's js."; \
- echo "You can install it by running: npm install uglify-js -g"; \
- fi
+#
+# Watch less files
+#
watch:
@@if test ! -z ${WATCHR}; then \
@@ -46,4 +35,12 @@ watch:
echo "You can install it by running: gem install watchr"; \
fi
-.PHONY: build watch \ No newline at end of file
+#
+# Build docs from templates
+#
+
+docs:
+ @ node docs/build
+
+
+.PHONY: build watch docs \ No newline at end of file