
TOP=../..
include $(TOP)/Makeconf

%.oct: %.cc ; $(MKOCTFILE) -DHAVE_OCTAVE_$(ver) $<

PROGS = trisolve.oct

all: $(PROGS)

trisolve.oct: trisolve.cc
	$(MKOCTFILE) -DHAVE_OCTAVE_$(ver) $< \
	dgtsv.f dptsv.f dpttrf.f dpttrs.f dptts2.f

clean: 
	$(RM) *.o $(PROGS) octave-core
