Sha256: 508f6143fd0b155d3990c93c5964e622e59ef2d98413ac4b50b0148642f93802

Contents?: true

Size: 1.81 KB

Versions: 36

Compression:

Stored size: 1.81 KB

Contents

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`
WATCHR ?= `which watchr`

#
# BUILD DOCS
#

docs: bootstrap
	rm docs/assets/bootstrap.zip
	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/
	cp js/*.js docs/assets/js/
	cp js/tests/vendor/jquery.js docs/assets/js/
	cp js/tests/vendor/jquery.js docs/assets/js/

#
# 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.css
	lessc --compress ${BOOTSTRAP_RESPONSIVE_LESS} > bootstrap/css/bootstrap-responsive.min.css
	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

#
# MAKE FOR GH-PAGES 4 FAT & MDO ONLY (O_O  )
#

gh-pages: docs
	rm -f ../bootstrap-gh-pages/assets/bootstrap.zip
	node docs/build production
	cp -r docs/* ../bootstrap-gh-pages

#
# WATCH LESS FILES
#

watch:
	echo "Watching less files..."; \
	watchr -e "watch('less/.*\.less') { system 'make' }"


.PHONY: dist docs watch gh-pages

Version data entries

36 entries across 36 versions & 1 rubygems

Version Path
bootstrapped-rails-2.0.8.1 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.8 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.7.9 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.7.8 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.7.7 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.7.6 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.7.5 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.7.4 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.7.3 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.7.2 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.7.1 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.7 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.6 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.5 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.4 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.3 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.2 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.1 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.1.rc7 vendor/assets/twitter/Makefile
bootstrapped-rails-2.0.1.rc6 vendor/assets/twitter/Makefile