mk/lib/res/.mk.yaml

22 lines
348 B
YAML
Raw Permalink Normal View History

2021-09-29 11:55:11 +00:00
# SAMPLE mk file
default: main
env:
tasks:
deploy:
pre: [ build,test ]
help: Deploys the project
cmd: echo deploying
test:
pre: [ c ]
help: Tests project
cmd: echo testing
build:
help: Build binaries
cmd: echo building
main:
help: Main task
pre: [ build ]
cmd: |-
echo main
echo done