Files
express/Makefile
2010-03-11 10:57:26 -08:00

17 lines
182 B
Makefile

NODE = node
all: test
test:
@$(NODE) spec/node.js all
app: app-chat
app-chat:
@$(NODE) examples/chat/app.js
app-upload:
@$(NODE) examples/upload/app.js
.PHONY: test app