Skip to content

Instantly share code, notes, and snippets.

View treydavis's full-sized avatar

Trey Davis treydavis

  • Clicktripz
  • Athens, AL
View GitHub Profile
BIN = ./node_modules/.bin
SRC = $(wildcard src/*.coffee)
LIB = $(SRC:src/%.coffee=lib/%.js)
build: $(LIB)
lib/%.js: src/%.coffee
@mkdir -p $(@D)
@$(BIN)/coffee -bcp $< > $@