2011-11-20 20:58:04 -08:00
|
|
|
VERSION=2.0.0
|
2011-09-15 23:09:56 -07:00
|
|
|
BOOTSTRAP = ./bootstrap.css
|
|
|
|
BOOTSTRAP_MIN = ./bootstrap.min.css
|
2011-07-02 10:45:59 -07:00
|
|
|
BOOTSTRAP_LESS = ./lib/bootstrap.less
|
2012-01-24 12:37:57 -07:00
|
|
|
LESS_COMPRESSOR ?= `which lessc`
|
2011-11-20 21:36:26 -08:00
|
|
|
UGLIFY_JS ?= `which uglifyjs`
|
2011-07-02 10:45:59 -07:00
|
|
|
WATCHR ?= `which watchr`
|
2011-06-28 00:23:54 -07:00
|
|
|
|
2012-01-23 14:14:16 -08:00
|
|
|
#
|
|
|
|
# Build less files
|
|
|
|
#
|
|
|
|
|
2011-06-28 00:23:54 -07:00
|
|
|
build:
|
2012-01-24 12:37:57 -07:00
|
|
|
@@if test ! -z ${LESS_COMPRESSOR}; then \
|
2011-12-24 22:31:39 -08:00
|
|
|
sed -e 's/@VERSION/'"v${VERSION}"'/' -e 's/@DATE/'"`date`"'/' <${BOOTSTRAP_LESS} >${BOOTSTRAP_LESS}.tmp; \
|
2011-07-02 10:45:59 -07:00
|
|
|
lessc ${BOOTSTRAP_LESS}.tmp > ${BOOTSTRAP}; \
|
|
|
|
lessc ${BOOTSTRAP_LESS}.tmp > ${BOOTSTRAP_MIN} --compress; \
|
|
|
|
rm -f ${BOOTSTRAP_LESS}.tmp; \
|
|
|
|
echo "Bootstrap successfully built! - `date`"; \
|
|
|
|
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 00:23:54 -07:00
|
|
|
|
2012-01-23 14:14:16 -08:00
|
|
|
#
|
|
|
|
# Watch less files
|
|
|
|
#
|
2011-11-20 21:36:26 -08:00
|
|
|
|
2011-07-01 23:21:11 -07:00
|
|
|
watch:
|
2011-07-28 17:50:38 -07:00
|
|
|
@@if test ! -z ${WATCHR}; then \
|
2011-07-02 10:45:59 -07:00
|
|
|
echo "Watching less files..."; \
|
|
|
|
watchr -e "watch('lib/.*\.less') { system 'make' }"; \
|
|
|
|
else \
|
2011-12-27 13:51:50 -06:00
|
|
|
echo "You must have the watchr installed in order to watch Bootstrap Less files."; \
|
2011-07-02 10:45:59 -07:00
|
|
|
echo "You can install it by running: gem install watchr"; \
|
|
|
|
fi
|
2011-07-01 23:21:11 -07:00
|
|
|
|
2012-01-23 14:14:16 -08:00
|
|
|
#
|
|
|
|
# Build docs from templates
|
|
|
|
#
|
|
|
|
|
|
|
|
docs:
|
|
|
|
@ node docs/build
|
|
|
|
|
|
|
|
|
|
|
|
.PHONY: build watch docs
|