#!/bin/sh

build() {
  cp -r static out
  nroff templates/about.roff > out/about.txt
}

clean() {
  rm -fr out
}

"$@"
