include $(SOPHYABASE)/include/sophyamake.inc

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

clean:
	rm -f testminuit testminuit.o

testminuit: testminuit.o
	$(CXXLINK) $^ -o $@ $(SOPHYAEXTSLBLIST)
testminuit.o: testminuit.cc
	$(CXXCOMPILEPROG) -o $@ $<
