SENSOR=mcp9808

all:
	gcc -Wall -c $(SENSOR).c -o $(SENSOR).o -lm
	gcc -Wall $(SENSOR).o test.c -o test.o -lm

clean:
	rm *.o > /dev/null 2>&1 &
