# Makefile for creating all tests

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

SRCS = drDAE2.cpp DAE2_exsol.cpp

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

all: drDAE2

drDAE2: drDAE2.o DAE2_exsol.cpp
	$(CXX) $(OPT) $(SSLDF) -o $@ $< $(LIBS)

clean:
	-rm -f $(OBJS) drDAE2

.PHONY: all clean
