# Makefile for the Chars Program
# By Vance Glasscock, (C)1999
# Read chars.c for License Info, GPL.
CC = gcc
OPTO = O2
chars:
	$(CC) -$(OPTO) -o chars chars.c
