#	Makefile for hex / blast
#	Copyright (C) 1988 Philip L. Budne
#
#	May be freely distributed and used for non-profit use only,
#	provided this, and all other Copyright notices remain intact.
#
#	Commercial use is strictly forbidden without explicit, written
#	permission of the author.

all:	hex blast

hex:	hex.c
	cc -o hex hex.c

blast:	blast.c
	cc -o blast blast.c
