all:
	gcc -Wall -c am2315.c -o am2315.o -lm
	gcc -Wall am2315.o test.c -o test.o -lm

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