#!/bin/sh

# Generate name of distribution file
# Usage: distname stem

NAME=oldgames
VERSION=1
EDIT=2

printf  "%s-%d.%d" $NAME $VERSION $EDIT

# end


