2013-07-18 21:14:49 -04:00
|
|
|
BOOTSTRAP ?= ./dist/css/bootstrap.css
|
2013-07-18 21:33:20 -04:00
|
|
|
BOOTSTRAP_MIN ?= ./dist/css/bootstrap.min.css
|
2013-01-02 06:13:46 -05:00
|
|
|
BOOTSTRAP_LESS ?= ./less/bootstrap.less
|
2012-04-19 01:49:31 -04:00
|
|
|
DATE=$(shell date +%I:%M%p)
|
2013-02-15 01:57:25 -05:00
|
|
|
CHECK=\033[32m✔ Done\033[39m
|
|
|
|
HR=\033[37m--------------------------------------------------\033[39m
|
2013-01-02 06:12:14 -05:00
|
|
|
PATH := ./node_modules/.bin:$(PATH)
|
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-04-19 01:49:31 -04:00
|
|
|
build:
|
2013-02-15 01:57:25 -05:00
|
|
|
@echo "\n\n"
|
|
|
|
@echo "\033[36mBuilding Bootstrap...\033[39m"
|
|
|
|
@echo "${HR}"
|
2013-02-17 19:58:43 -05:00
|
|
|
@printf "Running JSHint on JavaScript..."
|
2012-04-19 01:49:31 -04:00
|
|
|
@jshint js/*.js --config js/.jshintrc
|
|
|
|
@jshint js/tests/unit/*.js --config js/.jshintrc
|
2013-02-17 19:58:43 -05:00
|
|
|
@echo " ${CHECK}"
|
2013-01-02 05:42:59 -05:00
|
|
|
@printf "Compiling LESS with Recess..."
|
2013-01-02 06:12:14 -05:00
|
|
|
@recess --compile ${BOOTSTRAP_LESS} > ${BOOTSTRAP}
|
2013-07-18 21:33:20 -04:00
|
|
|
@recess --compress ${BOOTSTRAP_LESS} > ${BOOTSTRAP_MIN}
|
2013-02-17 19:58:43 -05:00
|
|
|
@echo " ${CHECK}"
|
|
|
|
@printf "Prepping documentation assets..."
|
2013-07-18 21:14:49 -04:00
|
|
|
@cp js/tests/vendor/jquery.js assets/js/
|
2013-02-17 19:58:43 -05:00
|
|
|
@echo " ${CHECK}"
|
|
|
|
@printf "Compiling and minifying JavaScript..."
|
2013-07-26 00:49:19 -04:00
|
|
|
@echo "if (!jQuery) throw new Error(\"Bootstrap requires jQuery\")\n" | cat - js/transition.js js/alert.js js/button.js js/carousel.js js/collapse.js js/dropdown.js js/modal.js js/tooltip.js js/popover.js js/scrollspy.js js/tab.js js/affix.js > dist/js/bootstrap.js
|
2013-07-18 21:14:49 -04:00
|
|
|
@uglifyjs -nc dist/js/bootstrap.js > dist/js/bootstrap.min.tmp.js
|
|
|
|
@echo "/**\n* Bootstrap.js v3.0.0 by @fat & @mdo\n* Copyright 2013 Twitter, Inc.\n* http://www.apache.org/licenses/LICENSE-2.0.txt\n*/" > dist/js/copyright.js
|
|
|
|
@cat dist/js/copyright.js dist/js/bootstrap.min.tmp.js > dist/js/bootstrap.min.js
|
|
|
|
@rm dist/js/copyright.js dist/js/bootstrap.min.tmp.js
|
2013-02-17 19:58:43 -05:00
|
|
|
@echo " ${CHECK}"
|
2013-02-15 01:57:25 -05:00
|
|
|
@echo "${HR}"
|
|
|
|
@echo "\033[36mSuccess!\n\033[39m"
|
|
|
|
@echo "\033[37mThanks for using Bootstrap,"
|
|
|
|
@echo "<3 @mdo and @fat\n\033[39m"
|
2012-04-19 01:49:31 -04:00
|
|
|
|
2012-04-19 19:38:43 -04:00
|
|
|
#
|
2012-04-19 20:34:07 -04:00
|
|
|
# RUN JSHINT & QUNIT TESTS IN PHANTOMJS
|
2012-04-19 19:38:43 -04:00
|
|
|
#
|
|
|
|
|
|
|
|
test:
|
2013-01-02 06:12:14 -05:00
|
|
|
jshint js/*.js --config js/.jshintrc
|
|
|
|
jshint js/tests/unit/*.js --config js/.jshintrc
|
2012-04-19 20:34:07 -04:00
|
|
|
node js/tests/server.js &
|
|
|
|
phantomjs js/tests/phantom.js "http://localhost:3000/js/tests"
|
|
|
|
kill -9 `cat js/tests/pid.txt`
|
|
|
|
rm js/tests/pid.txt
|
2011-06-28 03:23:54 -04:00
|
|
|
|
2012-08-29 07:24:00 -04:00
|
|
|
#
|
|
|
|
# CLEANS THE ROOT DIRECTORY OF PRIOR BUILDS
|
|
|
|
#
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -r bootstrap
|
|
|
|
|
2012-01-23 17:14:16 -05:00
|
|
|
#
|
2012-01-29 19:33:29 -05:00
|
|
|
# BUILD SIMPLE BOOTSTRAP DIRECTORY
|
2012-04-18 19:16:42 -04:00
|
|
|
# recess & uglifyjs are required
|
2012-01-29 16:15:37 -05:00
|
|
|
#
|
|
|
|
|
2013-06-28 08:19:46 -04:00
|
|
|
bootstrap: bootstrap-css bootstrap-js
|
2012-12-21 20:42:24 -05:00
|
|
|
|
|
|
|
|
|
|
|
#
|
|
|
|
# JS COMPILE
|
|
|
|
#
|
|
|
|
bootstrap-js: bootstrap/js/*.js
|
|
|
|
|
|
|
|
bootstrap/js/*.js: js/*.js
|
2012-01-29 19:33:29 -05:00
|
|
|
mkdir -p bootstrap/js
|
2013-05-16 14:06:30 -04:00
|
|
|
cat js/transition.js js/alert.js js/button.js js/carousel.js js/collapse.js js/dropdown.js js/modal.js js/tooltip.js js/popover.js js/scrollspy.js js/tab.js js/affix.js > bootstrap/js/bootstrap.js
|
2013-01-02 06:12:14 -05:00
|
|
|
uglifyjs -nc bootstrap/js/bootstrap.js > bootstrap/js/bootstrap.min.tmp.js
|
2013-07-18 21:14:49 -04:00
|
|
|
echo "/*!\n* Bootstrap.js by @fat & @mdo\n* Copyright 2013 Twitter, Inc.\n* http://www.apache.org/licenses/LICENSE-2.0.txt\n*/" > bootstrap/js/copyright.js
|
2012-03-08 14:39:00 -05:00
|
|
|
cat bootstrap/js/copyright.js bootstrap/js/bootstrap.min.tmp.js > bootstrap/js/bootstrap.min.js
|
|
|
|
rm bootstrap/js/copyright.js bootstrap/js/bootstrap.min.tmp.js
|
2012-01-29 16:15:37 -05:00
|
|
|
|
2012-12-21 20:42:24 -05:00
|
|
|
#
|
2013-05-21 17:43:12 -04:00
|
|
|
# CSS COMPILE
|
2012-12-21 20:42:24 -05:00
|
|
|
#
|
|
|
|
|
|
|
|
bootstrap-css: bootstrap/css/*.css
|
|
|
|
|
|
|
|
bootstrap/css/*.css: less/*.less
|
|
|
|
mkdir -p bootstrap/css
|
2013-01-14 09:02:25 -05:00
|
|
|
recess --compile ${BOOTSTRAP_LESS} > bootstrap/css/bootstrap.css
|
|
|
|
recess --compress ${BOOTSTRAP_LESS} > bootstrap/css/bootstrap.min.css
|
2012-12-21 20:42:24 -05:00
|
|
|
|
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' }"
|
|
|
|
|
2013-05-16 21:34:51 -04:00
|
|
|
#
|
|
|
|
# BUILD AND START SERVER
|
|
|
|
#
|
|
|
|
|
|
|
|
run: build
|
|
|
|
jekyll build && jekyll server
|
2012-01-29 16:15:37 -05:00
|
|
|
|
2013-06-27 22:27:44 -04:00
|
|
|
.PHONY: docs watch gh-pages bootstrap-css bootstrap-js
|