Created
September 14, 2012 00:48
-
-
Save mustpax/3719060 to your computer and use it in GitHub Desktop.
coffee makefile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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