# Makefile for creating all tests

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

SRCS = drnlPendel.cpp

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

all: drnlPendel

drnlPendel: drnlPendel.o
	$(CXX) $(OPT) $(SSLDF) -o $@ $< $(LIBS)

clean:
	-rm -f $(OBJS) drnlPendel

.PHONY: all clean
