CPPFLAGS=-Wall -g -std=c++0x

all: timer temperature binary

binary: binary.cpp
temperature: temperature.cpp
timer: timer.cpp

clean:
	rm -rv timer temperature binary
