mirror of
https://github.com/twbs/bootstrap.git
synced 2025-03-15 15:29:22 +01:00
add formal checks to makefile to make sure people have neccessary software installed
add date to built file!
This commit is contained in:
parent
52dfbe6500
commit
088bfcc13a
33
Makefile
33
Makefile
@ -1,14 +1,29 @@
|
|||||||
# NOTE: you must have the less npm package installed globally to build!
|
DATE=$(shell DATE)
|
||||||
# To install less package run: $npm install less -g
|
BOOTSTRAP = ./bootstrap-1.0.0.css
|
||||||
# watchr -e "watch('lib/.*\.less') { system 'make' }"
|
BOOTSTRAP_MIN = ./bootstrap-1.0.0.min.css
|
||||||
|
BOOTSTRAP_LESS = ./lib/bootstrap.less
|
||||||
|
LESS_COMPESSOR ?= `which lessc`
|
||||||
|
WATCHR ?= `which watchr`
|
||||||
|
|
||||||
build:
|
build:
|
||||||
@lessc ./lib/bootstrap.less > ./bootstrap-1.0.0.css
|
@@if test ! -z ${LESS_COMPESSOR}; then \
|
||||||
@lessc ./lib/bootstrap.less > ./bootstrap-1.0.0.min.css --compress
|
sed 's/@DATE/'"${DATE}"'/' ${BOOTSTRAP_LESS} >${BOOTSTRAP_LESS}.tmp; \
|
||||||
@echo "Bootstrap successfully built! - `date`"
|
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:
|
watch:
|
||||||
@echo "Watching less files for changes..."
|
@@if test ! -z ${LESS_COMPESSOR}; then \
|
||||||
@watchr -e "watch('lib/.*\.less') { system 'make' }"
|
echo "Watching less files..."; \
|
||||||
|
watchr -e "watch('lib/.*\.less') { system 'make' }"; \
|
||||||
|
else \
|
||||||
|
echo "You must have the WATCHR installed in order to build Bootstrap."; \
|
||||||
|
echo "You can install it by running: gem install watchr"; \
|
||||||
|
fi
|
||||||
|
|
||||||
.PHONY: build
|
.PHONY: build watch
|
2
bootstrap-1.0.0.css
vendored
2
bootstrap-1.0.0.css
vendored
@ -6,7 +6,7 @@
|
|||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
*
|
||||||
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
||||||
* Date: {{ date }}
|
* Date: Sat Jul 2 10:45:47 PDT 2011
|
||||||
*/
|
*/
|
||||||
/*
|
/*
|
||||||
* Reset.less
|
* Reset.less
|
||||||
|
2
lib/bootstrap.less
vendored
2
lib/bootstrap.less
vendored
@ -6,7 +6,7 @@
|
|||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
*
|
||||||
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
* Designed and built with all the love in the world @twitter by @mdo and @fat.
|
||||||
* Date: {{ date }}
|
* Date: @DATE
|
||||||
*/
|
*/
|
||||||
|
|
||||||
// CSS Reset
|
// CSS Reset
|
||||||
|
Loading…
x
Reference in New Issue
Block a user