CC=gcc2.1
CFLAGS=-O -funroll-loops -I/usr/local/src/sblast -Dbsdi

all:		str str15 str32 srec splay

str:		str.c
		$(CC) $(CFLAGS) str.c -o str
		strip str

str15:		str
		ln -s str str15

str32:		str
		ln -s str str32

srec:		recplay.c
		$(CC) $(CFLAGS) recplay.c -o srec

splay:		srec
		ln -s srec splay

clean:
		rm -f str str15 str32 srec splay *.o core
