#
# 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=\
	ADConverter.cpp \
	Base.cpp \
	Bus.cpp \
	ChipCard.cpp \
	Display.cpp \
	IOExpander.cpp \
	Keyboard.cpp \
	Multiplexer.cpp \
	Skeleton.cpp \
	Stepper.cpp \
	TempSensor.cpp

CPPFLAGS+=-I..

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

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