yamlscript 0.1.84

Program in YAML — Code is Data
Documentation
include ../common/base.mk
include $(COMMON)/binding.mk

CARGO := $(shell command -v cargo)

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


#------------------------------------------------------------------------------
build:: build-doc

build-doc:: ReadMe.md

ifdef CARGO
$(CARGO_CMDS)::
	cargo $@

release: publish
endif