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-11-21 00:36:26 -05:00
|
|
|
UGLIFY_JS ?= `which uglifyjs`
|
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-27 01:05:45 -05:00
|
|
|
# Build less files + docs
|
2012-01-23 17:14:16 -05:00
|
|
|
#
|
|
|
|
|
2011-06-28 03:23:54 -04:00
|
|
|
build:
|
2012-01-28 00:06:09 -05:00
|
|
|
@if test ! -z ${LESS_COMPRESSOR}; then \
|
|
|
|
lessc ${BOOTSTRAP_LESS} > ${BOOTSTRAP}; \
|
|
|
|
lessc ${BOOTSTRAP_RESPONSIVE_LESS} > ${BOOTSTRAP_RESPONSIVE}; \
|
2012-01-27 01:05:45 -05:00
|
|
|
node docs/build; \
|
2012-01-27 01:39:17 -05:00
|
|
|
cp img/* docs/assets/img/; \
|
2011-07-02 13:45:59 -04:00
|
|
|
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
|
2011-06-28 03:23:54 -04:00
|
|
|
|
2012-01-23 17:14:16 -05:00
|
|
|
#
|
|
|
|
# Watch less files
|
|
|
|
#
|
2011-11-21 00:36:26 -05:00
|
|
|
|
2011-07-02 02:21:11 -04:00
|
|
|
watch:
|
2012-01-28 00:06:09 -05:00
|
|
|
@if test ! -z ${WATCHR}; then \
|
2011-07-02 13:45:59 -04:00
|
|
|
echo "Watching less files..."; \
|
2012-01-27 00:48:46 -05:00
|
|
|
watchr -e "watch('less/.*\.less') { system 'make' }"; \
|
2011-07-02 13:45:59 -04:00
|
|
|
else \
|
2011-12-27 14:51:50 -05:00
|
|
|
echo "You must have the watchr installed in order to watch Bootstrap Less files."; \
|
2011-07-02 13:45:59 -04:00
|
|
|
echo "You can install it by running: gem install watchr"; \
|
|
|
|
fi
|
2011-07-02 02:21:11 -04:00
|
|
|
|
2012-01-27 01:05:45 -05:00
|
|
|
.PHONY: build watch
|