# Makefile for creating all tests

# Note: not to be called directly, only from the main Makefile

SRCS = drLinCaMo.cpp LinCaMo_exsol.cpp

OBJS := $(SRCS:.cpp=.o)

all: drLinCaMo

drLinCaMo: drLinCaMo.o LinCaMo_exsol.cpp
	$(CXX) $(OPT) $(SSLDF) -o $@ $< $(LIBS)

clean:
	-rm -f $(OBJS) drDAE2

.PHONY: all clean
