mirror of
https://github.com/zebrajr/express.git
synced 2026-01-15 12:15:27 +00:00
17 lines
182 B
Makefile
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 |