aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 34e0d7b1dab2fae03f73fcd4c74212c76a68b387 (plain)
1
2
3
4
5
6
7
8
9
10
# NOTE: you must have the less npm package installed globally to build!
# To install run: npm install less -g
# ProTip: 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`"

.PHONY: build