Skip to content
This repository has been archived by the owner on Jul 12, 2019. It is now read-only.

Commit

Permalink
Fix coffee compile (during install)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff Stamerjohn authored and Jeff Stamerjohn committed May 1, 2013
1 parent b8014ca commit eea0346
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tools/task.mk
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ LIBDIR = lib
SRCDIR = src

SRC = $(wildcard $(SRCDIR)/*.coffee)

LIB = $(SRC:$(SRCDIR)/%.coffee=$(LIBDIR)/%.js)

.SUFFIXES: .coffee .js
Expand All @@ -19,7 +20,7 @@ $(LIBDIR):
@mkdir -p "$@"

$(LIBDIR)/%.js: $(SRCDIR)/%.coffee $(LIBDIR)
$(COFFEE) -j < "$<" > "$@"
$(COFFEE) -s -p < "$<" > "$@"

clean:
@rm -r $(LIBDIR)
Expand Down

0 comments on commit eea0346

Please sign in to comment.