···11+# Changelog
22+33+All notable changes to this project will be documented in this file.
44+55+The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66+and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77+88+## [Unreleased]
99+1010+- Import source code from [/x/](https://github.com/Xe/x)
+22
Makefile
···11+.PHONY: build clean deps all lint test package
22+33+build:
44+ go build -o ./var/yeet ./cmd/yeet
55+66+clean:
77+ rm ./var/yeet* ||:
88+99+deps:
1010+ go mod download
1111+1212+all: build lint test clean package
1313+1414+lint:
1515+ go vet ./...
1616+ go tool staticcheck ./...
1717+1818+test:
1919+ go test ./...
2020+2121+package:
2222+ go run ./cmd/yeet