takagi / lake

Lake is a GNU make like build utility in Common Lisp.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support calling another task.

takagi opened this issue · comments

Provides calling another task in a task.

(task "foo" ()
  (echo "foo")
  (execute "bar"))

(task "bar" ()
  (echo "bar"))

Such that,

$ clake foo
foo
bar

Closed via 5c33933.