rmake 0.1.13

A simple task runner like make
rmake-0.1.13 is not a library.
Visit the last successful build: rmake-0.1.38

About

  • A simple task runner like make.

Getting started

cargo install rmake

How to run the first task

rmake

How to run the specified task

rmake {name of task}

Show usage

rmake --help

rmake.toml is as

[env]
MY_ENV_01 = "Hello,"
MY_ENV_02 = "World!"

[[tasks]]
description = "anything"
name = "default"
depends_on = ["common"]
command = [
	"ECHO %MY_ENV_02%",
]

[[tasks]]
description = "anything"
name = "common"
depends_on = []
command = [
	"ECHO %MY_ENV_01%",
]