mirror of
https://github.com/outbackdingo/control-pane.git
synced 2026-02-07 09:40:26 +00:00
16 lines
251 B
Makefile
16 lines
251 B
Makefile
all: lib/getopt.js test/test.js
|
|
|
|
lib/%.js: lib/%.toffee
|
|
toffee -c -o lib $<
|
|
|
|
test/%.js: test/%.toffee
|
|
toffee -c -o test $<
|
|
|
|
bin/%.js: bin/%.toffee
|
|
toffee -c -o bin $<
|
|
|
|
test-all:
|
|
node test/test.js
|
|
node examples/help.js
|
|
node examples/simple.js -h
|