# Makefile for creating all tests

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

SRCS = drDAE1.cpp DAE1_exsol.cpp

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

all: drDAE1

drDAE1: drDAE1.o DAE1_exsol.cpp
	$(CXX) $(OPT) $(SSLDF) -o $@ $< $(LIBS)

clean:
	-rm -f $(OBJS) drDAE1

.PHONY: all clean
