Skip to content

Commit

Permalink
Makefile, CSS
Browse files Browse the repository at this point in the history
  • Loading branch information
cgst committed Jul 11, 2010
1 parent 13912bf commit 3671294
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
SASS=`which sass`

CSS_TARGETS=popover.css

all: $(CSS_TARGETS)

clean:
@rm $(CSS_TARGETS)

%.css: lib/%.sass
@if test -z $(SASS) ; \
then \
echo "Couldn't find sass compiler. (http://sass-lang.com/)" ; \
exit 1 ; \
fi
@$(SASS) lib/$(*F).sass $(*F).css

0 comments on commit 3671294

Please sign in to comment.