Skip to content

Commit

Permalink
added Makefile for *.less
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronj1335 committed Jun 28, 2012
1 parent 25fb155 commit 172a659
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Makefile
@@ -0,0 +1,8 @@
LESS = $(shell find . -name '*.less' -not -path 'vendor/*')
LESSC ?= $(shell which lessc)

less: $(LESS:.less=.css)

%.css: %.less
$(LESSC) $< > $@

0 comments on commit 172a659

Please sign in to comment.