# Makefile for sequential decoder test routine
# If you don't have -lm387, simply remove the reference
# Change CC= to the name of your C compiler

CFLAGS=-O4
CC=gcc2

seqtest: seqtest.o sim.o fano.o metrics.o tab.o
	$(CC) -o seqtest seqtest.o sim.o fano.o metrics.o tab.o -lm387 \
	-lcurses -ltermcap -lm

