This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Specify where our binaries are (I'm using package.json and npm to handle dependencies) | |
LESSC = node_modules/.bin/lessc | |
UGLIFYJS = node_modules/.bin/uglifyjs | |
# Our LESS input file(s) | |
LESS = css/base.less | |
# Our CSS list (replaces .less with .css in the list) | |
CSS = $(LESS:.less=.css) |