takagi / lake

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Support dynamic definition of tasks.

takagi opened this issue · comments

Provide interfaces to support defining tasks dynamically. For example, it provides a way to define tasks same as the following automatically.

(task "task0" ()
  ...)

(task "task1" ()
  ...)

(task "task2" ()
  ...)

...