Skip to content

Instantly share code, notes, and snippets.

@mustpax
Created September 14, 2012 00:48
Show Gist options
  • Save mustpax/3719060 to your computer and use it in GitHub Desktop.
Save mustpax/3719060 to your computer and use it in GitHub Desktop.
coffee makefile
# Basic compilation rules for CoffeScript
run: script.js
node script.js
clean:
rm script.js
.coffee.js :
coffee -c $<
.SUFFIXES: .js .coffee
.PHONY: run clean
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment