aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJacob Thornton <[email protected]>2012-01-31 13:18:34 -0800
committerJacob Thornton <[email protected]>2012-01-31 13:18:34 -0800
commit0bfbe5058d61ae93d82b09f1dff7eb30dc22426e (patch)
tree6ccf3dd9c36ff4b1f6cde5edbce21cdf0de78497 /Makefile
parent43cbc9440425b7c97c943690eefd14520de708e1 (diff)
parent4bd1ba4e0dc44d1d16161306576548f378ab1f8a (diff)
downloadbootstrap-0bfbe5058d61ae93d82b09f1dff7eb30dc22426e.tar.xz
bootstrap-0bfbe5058d61ae93d82b09f1dff7eb30dc22426e.zip
Merge branch '2.0-wip'
Conflicts: .gitignore LICENSE Makefile bootstrap.css bootstrap.min.css docs/assets/js/application.js docs/assets/js/google-code-prettify/prettify.css docs/index.html docs/javascript.html examples/container-app.html examples/fluid.html examples/hero.html js/bootstrap-alerts.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tabs.js js/bootstrap-twipsy.js js/tests/index.html js/tests/unit/bootstrap-modal.js js/tests/unit/bootstrap-popover.js js/tests/unit/bootstrap-tabs.js lib/forms.less lib/mixins.less lib/patterns.less lib/scaffolding.less lib/tables.less
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile83
1 files changed, 41 insertions, 42 deletions
diff --git a/Makefile b/Makefile
index a7004e079..8811d03e1 100644
--- a/Makefile
+++ b/Makefile
@@ -1,47 +1,46 @@
-VERSION=1.4.0
-DATE=$(shell date)
-BOOTSTRAP = ./bootstrap.css
-BOOTSTRAP_MIN = ./bootstrap.min.css
-BOOTSTRAP_LESS = ./lib/bootstrap.less
+BOOTSTRAP = ./docs/assets/css/bootstrap.css
+BOOTSTRAP_LESS = ./less/bootstrap.less
+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:
- @@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; \
- 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"; \
- fi
-
-js/min:
- @@if test ! -z ${UGLIFY_JS}; then \
- mkdir -p js/min; \
- uglifyjs -o js/min/bootstrap-alerts.min.js js/bootstrap-alerts.js;\
- uglifyjs -o js/min/bootstrap-buttons.min.js js/bootstrap-buttons.js;\
- uglifyjs -o js/min/bootstrap-dropdown.min.js js/bootstrap-dropdown.js;\
- uglifyjs -o js/min/bootstrap-modal.min.js js/bootstrap-modal.js;\
- uglifyjs -o js/min/bootstrap-popover.min.js js/bootstrap-popover.js;\
- uglifyjs -o js/min/bootstrap-scrollspy.min.js js/bootstrap-scrollspy.js;\
- uglifyjs -o js/min/bootstrap-tabs.min.js js/bootstrap-tabs.js;\
- uglifyjs -o js/min/bootstrap-twipsy.min.js js/bootstrap-twipsy.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
+#
+# BUILD DOCS
+#
+
+docs: bootstrap
+ zip -r docs/assets/bootstrap.zip bootstrap
+ rm -r bootstrap
+ lessc ${BOOTSTRAP_LESS} > ${BOOTSTRAP}
+ lessc ${BOOTSTRAP_RESPONSIVE_LESS} > ${BOOTSTRAP_RESPONSIVE}
+ node docs/build
+ cp img/* docs/assets/img/
+
+#
+# BUILD SIMPLE BOOTSTRAP DIRECTORY
+# lessc & uglifyjs are required
+#
+
+bootstrap:
+ mkdir -p bootstrap/img
+ mkdir -p bootstrap/css
+ mkdir -p bootstrap/js
+ cp img/* bootstrap/img/
+ lessc ${BOOTSTRAP_LESS} > bootstrap/css/bootstrap.css
+ lessc --compress ${BOOTSTRAP_LESS} > bootstrap/css/bootstrap.min.css
+ lessc ${BOOTSTRAP_RESPONSIVE_LESS} > bootstrap/css/bootstrap.responsive
+ lessc --compress ${BOOTSTRAP_RESPONSIVE_LESS} > bootstrap/css/bootstrap.min.responsive
+ cat js/bootstrap-transition.js js/bootstrap-alert.js js/bootstrap-button.js js/bootstrap-carousel.js js/bootstrap-collapse.js js/bootstrap-dropdown.js js/bootstrap-modal.js js/bootstrap-tooltip.js js/bootstrap-popover.js js/bootstrap-scrollspy.js js/bootstrap-tab.js js/bootstrap-typeahead.js > bootstrap/js/bootstrap.js
+ uglifyjs -nc bootstrap/js/bootstrap.js > bootstrap/js/bootstrap.min.js
+
+#
+# WATCH LESS FILES
+#
watch:
- @@if test ! -z ${WATCHR}; then \
- echo "Watching less files..."; \
- watchr -e "watch('lib/.*\.less') { system 'make' }"; \
- else \
- echo "You must have the watchr installed in order to watch Bootstrap less files."; \
- echo "You can install it by running: gem install watchr"; \
- fi
-
-.PHONY: build watch \ No newline at end of file
+ echo "Watching less files..."; \
+ watchr -e "watch('less/.*\.less') { system 'make' }"
+
+
+.PHONY: dist docs watch \ No newline at end of file