CFLAGS =  -O 
all:	merge lpcplot restoreplot pchplot restorelpc

clean:
	rm -f *.o

merge:	merge.c
	cc -O -o merge merge.c

lpcplot:	lpcplot.c
	cc -O -o lpcplot lpcplot.c

pchplot:	pchplot.c
	cc -O -o pchplot pchplot.c

restoreplot:	restoreplot.c
	cc -O -o restoreplot restoreplot.c

restorelpc:	restorelpc.c
	cc -O -o restorelpc restorelpc.c
