all:
	gcc -o stat_func stat_func.c -lm
	gcc -o getcharex getcharex.c
	gcc -o resistor resistor.c -lm
clean:
	rm stat_func
	rm getcharex
	rm resistor
