CC = gcc
LDLIBS = -lm

all: sensors_main

##########################################
# Modify the lines below for the point 5 #
##########################################

sensors_main: sensors_main.o 

sensors_main.o: sensors_main.c 

sensors.o: sensors.c

clean:
	del -f *.o sensors_main.exe
