mirror of
https://github.com/containers/podman.git
synced 2026-03-18 14:46:58 -04:00
Add support for short-name aliasing. Signed-off-by: Valentin Rothberg <rothberg@redhat.com>
15 lines
361 B
Makefile
15 lines
361 B
Makefile
# Copyright 2016 Canonical Ltd.
|
|
# Licensed under the LGPLv3, see LICENCE file for details.
|
|
|
|
default: check
|
|
|
|
check:
|
|
go test
|
|
|
|
docs:
|
|
godoc2md github.com/juju/ansiterm > README.md
|
|
sed -i 's|\[godoc-link-here\]|[](https://godoc.org/github.com/juju/ansiterm)|' README.md
|
|
|
|
|
|
.PHONY: default check docs
|