yamlscript 0.1.62

Program in YAML
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
include ../common/base.mk
include $(COMMON)/binding.mk

CARGO := $(shell command -v cargo)

CARGO_CMDS := \
    build \
    clean \
    install \
    publish \
    test \

ifdef CARGO
$(CARGO_CMDS)::
	cargo $@

release: publish
endif