twbs--bootstrap/Makefile

57 lines
1.7 KiB
Makefile
Raw Normal View History

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
2012-01-24 19:37:57 +00:00
LESS_COMPRESSOR ?= `which lessc`
WATCHR ?= `which watchr`
2012-01-23 22:14:16 +00:00
#
# BUILD DOCS
2012-01-23 22:14:16 +00:00
#
2012-01-30 00:33:29 +00:00
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/
2012-01-31 21:58:28 +00:00
cp js/*.js docs/assets/js/
cp js/tests/vendor/jquery.js docs/assets/js/
2012-02-01 01:35:23 +00:00
cp js/tests/vendor/jquery.js docs/assets/js/
2012-01-23 22:14:16 +00:00
#
2012-01-30 00:33:29 +00:00
# BUILD SIMPLE BOOTSTRAP DIRECTORY
# lessc & uglifyjs are required
#
2012-01-30 00:33:29 +00: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-02 02:24:41 +00:00
lessc ${BOOTSTRAP_RESPONSIVE_LESS} > bootstrap/css/bootstrap-responsive.css
lessc --compress ${BOOTSTRAP_RESPONSIVE_LESS} > bootstrap/css/bootstrap-responsive.min.css
2012-01-30 00:33:29 +00: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-02-02 00:38:58 +00:00
# MAKE FOR GH-PAGES 4 FAT & MDO ONLY (O_O )
2012-01-23 22:14:16 +00:00
#
2012-02-02 00:38:58 +00:00
gh-pages: docs
node docs/build production
cp -r docs/* ../bootstrap-gh-pages
2012-02-02 00:38:58 +00:00
#
# WATCH LESS FILES
#
watch:
echo "Watching less files..."; \
watchr -e "watch('less/.*\.less') { system 'make' }"
.PHONY: dist docs watch gh-pages