# Makefile for stracker players.

CC	= cc

all:		str15 str32

str32:		str15
		ln -s str15 str32

str15:		str.c
		$(CC) -O -o str15 str.c
		strip str15
