2012-01-27 01:05:45 -05:00
|
|
|
BOOTSTRAP = ./docs/assets/css/bootstrap.css
|
2012-01-27 00:48:46 -05:00
|
|
|
BOOTSTRAP_LESS = ./less/bootstrap.less
|
2012-01-27 01:05:45 -05:00
|
|
|
BOOTSTRAP_RESPONSIVE = ./docs/assets/css/bootstrap-responsive.css
|
2012-01-27 00:48:46 -05:00
|
|
|
BOOTSTRAP_RESPONSIVE_LESS = ./less/responsive.less
|
2012-01-24 14:37:57 -05:00
|
|
|
LESS_COMPRESSOR ?= `which lessc`
|
2011-07-02 13:45:59 -04:00
|
|
|
WATCHR ?= `which watchr`
|
2011-06-28 03:23:54 -04:00
|
|
|
|
2012-01-23 17:14:16 -05:00
|
|
|
#
|
2012-01-29 16:15:37 -05:00
|
|
|
# BUILD DOCS
|
2012-01-23 17:14:16 -05:00
|
|
|
#
|
|
|
|
|
2012-01-29 19:33:29 -05:00
|
|
|
docs: bootstrap
|
2012-02-02 01:27:46 -05:00
|
|
|
rm docs/assets/bootstrap.zip
|
2012-01-29 16:15:37 -05:00
|
|
|
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/
|
2012-01-31 16:58:28 -05:00
|
|
|
cp js/*.js docs/assets/js/
|
|
|
|
cp js/tests/vendor/jquery.js docs/assets/js/
|
2012-01-31 20:35:23 -05:00
|
|
|
cp js/tests/vendor/jquery.js docs/assets/js/
|
2011-06-28 03:23:54 -04:00
|
|
|
|
2012-01-23 17:14:16 -05:00
|
|
|
#
|
2012-01-29 19:33:29 -05:00
|
|
|
# BUILD SIMPLE BOOTSTRAP DIRECTORY
|
2012-01-29 16:15:37 -05:00
|
|
|
# lessc & uglifyjs are required
|
|
|
|
#
|
|
|
|
|
2012-01-29 19:33:29 -05:00
|
|
|
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
|
2012-02-01 21:24:41 -05:00
|
|
|
lessc ${BOOTSTRAP_RESPONSIVE_LESS} > bootstrap/css/bootstrap-responsive.css
|
|
|
|
lessc --compress ${BOOTSTRAP_RESPONSIVE_LESS} > bootstrap/css/bootstrap-responsive.min.css
|
2012-01-29 19:33:29 -05:00
|
|
|
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
|
2012-01-29 16:15:37 -05:00
|
|
|
|
|
|
|
#
|
2012-02-01 19:38:58 -05:00
|
|
|
# MAKE FOR GH-PAGES 4 FAT & MDO ONLY (O_O )
|
2012-01-23 17:14:16 -05:00
|
|
|
#
|
2011-11-21 00:36:26 -05:00
|
|
|
|
2012-02-01 19:38:58 -05:00
|
|
|
gh-pages: docs
|
2012-02-02 01:27:46 -05:00
|
|
|
rm -f ../bootstrap-gh-pages/assets/bootstrap.zip
|
2012-02-01 19:38:58 -05:00
|
|
|
node docs/build production
|
2012-01-31 17:05:30 -05:00
|
|
|
cp -r docs/* ../bootstrap-gh-pages
|
|
|
|
|
2012-02-01 19:38:58 -05:00
|
|
|
#
|
|
|
|
# WATCH LESS FILES
|
|
|
|
#
|
|
|
|
|
2011-07-02 02:21:11 -04:00
|
|
|
watch:
|
2012-01-29 16:15:37 -05:00
|
|
|
echo "Watching less files..."; \
|
|
|
|
watchr -e "watch('less/.*\.less') { system 'make' }"
|
|
|
|
|
|
|
|
|
2012-01-31 17:05:30 -05:00
|
|
|
.PHONY: dist docs watch gh-pages
|