
.SUFFIXES:

all: example.dif example9.dif

example.dif: example.dat example.lbl formant6
	rm -f example.dif
	./formant6 -n 3 -l example.lbl -o example.dif example.dat

formant6: formant6.c
	gcc -s -Wall -O2 -o formant6 formant6.c -lm

example9.dif: example9.dat example.lbl formant9
	rm -f example9.dif
	./formant9 -n 3 -l example.lbl -o example9.dif example9.dat

formant9: formant9.c
	gcc -s -Wall -O2 -o formant9 formant9.c -lm
