#
# This makefile just compiles all *.cpp files in this directory.
# This is not needed for any of the programs in the other directories but it is quite handy to check for syntax errors.
# 



SOURCES=\
	AbstractDatagram.cpp \
	AES.cpp \
	FileHandler.cpp \
	Mutex.cpp \
	ParamFile.cpp \
	PeriodicThread.cpp \
	PracticalSocket.cpp \
	RelaisBoard.cpp \
	SerialPort.cpp \
	Socket.cpp \
	Thread.cpp \
	WaitCondition.cpp

all: $(patsubst %.cpp,%.o,$(SOURCES))

clean: 
	$(RM) -f $(patsubst %.cpp,%.o,$(SOURCES))
