2011-06-28 00:23:54 -07:00
|
|
|
# NOTE: you must have the less npm package installed globally to build!
|
2011-07-01 23:21:11 -07:00
|
|
|
# To install less package run: $npm install less -g
|
|
|
|
# watchr -e "watch('lib/.*\.less') { system 'make' }"
|
2011-06-28 00:23:54 -07:00
|
|
|
|
|
|
|
build:
|
|
|
|
@lessc ./lib/bootstrap.less > ./bootstrap-1.0.0.css
|
|
|
|
@lessc ./lib/bootstrap.less > ./bootstrap-1.0.0.min.css --compress
|
2011-06-28 15:10:43 -07:00
|
|
|
@echo "Bootstrap successfully built! - `date`"
|
2011-06-28 00:23:54 -07:00
|
|
|
|
2011-07-01 23:21:11 -07:00
|
|
|
watch:
|
|
|
|
@echo "Watching less files for changes..."
|
|
|
|
@watchr -e "watch('lib/.*\.less') { system 'make' }"
|
|
|
|
|
2011-06-28 00:23:54 -07:00
|
|
|
.PHONY: build
|