mirror of
https://github.com/tenrok/bootstrap.git
synced 2026-06-17 19:21:23 +03:00
update docs to include separate responsive css, update docs to highlight proper file name, updated makefile to build responsive separately
This commit is contained in:
@@ -2,6 +2,9 @@ VERSION=2.0.0
|
||||
BOOTSTRAP = ./bootstrap.css
|
||||
BOOTSTRAP_MIN = ./bootstrap.min.css
|
||||
BOOTSTRAP_LESS = ./lib/bootstrap.less
|
||||
BOOTSTRAP_RESPONSIVE = ./bootstrap-responsive.css
|
||||
BOOTSTRAP_RESPONSIVE_MIN = ./bootstrap-responsive.min.css
|
||||
BOOTSTRAP_RESPONSIVE_LESS = ./lib/responsive.less
|
||||
LESS_COMPRESSOR ?= `which lessc`
|
||||
UGLIFY_JS ?= `which uglifyjs`
|
||||
WATCHR ?= `which watchr`
|
||||
@@ -16,6 +19,10 @@ build:
|
||||
lessc ${BOOTSTRAP_LESS}.tmp > ${BOOTSTRAP}; \
|
||||
lessc ${BOOTSTRAP_LESS}.tmp > ${BOOTSTRAP_MIN} --compress; \
|
||||
rm -f ${BOOTSTRAP_LESS}.tmp; \
|
||||
sed -e 's/@VERSION/'"v${VERSION}"'/' -e 's/@DATE/'"`date`"'/' <${BOOTSTRAP_RESPONSIVE_LESS} >${BOOTSTRAP_RESPONSIVE_LESS}.tmp; \
|
||||
lessc ${BOOTSTRAP_RESPONSIVE_LESS}.tmp > ${BOOTSTRAP_RESPONSIVE}; \
|
||||
lessc ${BOOTSTRAP_RESPONSIVE_LESS}.tmp > ${BOOTSTRAP_RESPONSIVE_MIN} --compress; \
|
||||
rm -f ${BOOTSTRAP_RESPONSIVE_LESS}.tmp; \
|
||||
echo "Bootstrap successfully built! - `date`"; \
|
||||
else \
|
||||
echo "You must have the LESS compiler installed in order to build Bootstrap."; \
|
||||
|
||||
Reference in New Issue
Block a user