Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7a962a3e5b9d152a95ef80508dec2f3f20e0f5f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# NOTE: you must have the less npm package installed globally to build!
# To install less package run: $npm install less -g
# watchr -e "watch('lib/.*\.less') { system 'make' }"

build:
	@lessc ./lib/bootstrap.less > ./bootstrap-1.0.0.css
	@lessc ./lib/bootstrap.less > ./bootstrap-1.0.0.min.css --compress
	@echo "Bootstrap successfully built! - `date`"

watch:
	@echo "Watching less files for changes..."
	@watchr -e "watch('lib/.*\.less') { system 'make' }"

.PHONY: build