mirror of
https://github.com/twbs/bootstrap.git
synced 2024-11-29 11:24:18 +01:00
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
VERSION=2.0.0
|
|
BOOTSTRAP = ./bootstrap.css
|
|
BOOTSTRAP_MIN = ./bootstrap.min.css
|
|
BOOTSTRAP_LESS = ./lib/bootstrap.less
|
|
LESS_COMPESSOR ?= `which lessc`
|
|
UGLIFY_JS ?= `which uglifyjs`
|
|
WATCHR ?= `which watchr`
|
|
|
|
#
|
|
# Build less files
|
|
#
|
|
|
|
build:
|
|
@@if test ! -z ${LESS_COMPESSOR}; then \
|
|
sed -e 's/@VERSION/'"v${VERSION}"'/' -e 's/@DATE/'"`date`"'/' <${BOOTSTRAP_LESS} >${BOOTSTRAP_LESS}.tmp; \
|
|
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
|
|
|
|
#
|
|
# Watch less files
|
|
#
|
|
|
|
watch:
|
|
@@if test ! -z ${WATCHR}; then \
|
|
echo "Watching less files..."; \
|
|
watchr -e "watch('lib/.*\.less') { system 'make' }"; \
|
|
else \
|
|
echo "You must have the watchr installed in order to watch Bootstrap Less files."; \
|
|
echo "You can install it by running: gem install watchr"; \
|
|
fi
|
|
|
|
#
|
|
# Build docs from templates
|
|
#
|
|
|
|
docs:
|
|
@ node docs/build
|
|
|
|
|
|
.PHONY: build watch docs |