# -*- makefile-mode -*-
WARN=-Wall -Wextra
COMP=gfortran $(WARN)
test : test.o aln.o
	$(COMP) -o $@ $+
test.o : test.f95 aln.mod
	$(COMP) -c $<
aln.o aln.mod : aln.f95
	$(COMP) -c $<
# -*- makefile-mode -*-
# pour produire ces documents
aln.f95 test.f95 : rsl.nw
	notangle -R$@ $< > $@
rsl.pdf : rsl.tex
	pdflatex rsl
	pdflatex rsl
rsl.tex : rsl.nw
	noweave -delay -index $<  | sed -e s/:un/-/g >$@
clean :
	rm -f rsl.log rsl.aux aln.mod aln.o test.o
purge : 
	rm -f test aln.f95 test.f95 rsl.pdf rsl.tex *~  
