include $(SOPHYABASE)/include/sophyamake.inc

CPPFLAGS := $(CPPFLAGS) -Df2cFortran
CXXFLAGS := $(CXXFLAGS) -Df2cFortran
 
all: testminuit

clean:
	rm -f testminuit testminuit.o

testminuit: testminuit.o
	$(CXXLINK) $(CXXTEMPFLG) -o $@ testminuit.o $(SOPHYAEXTSLBLIST)
testminuit.o: testminuit.cc
	$(CXXCOMPILE) $(CXXTEMPFLG) -o $@ testminuit.cc

