all: math4
math4: math4.cpp
	c++ -Wall -ansi -pedantic -o math4 math4.cpp -lm
	strip math4
clean: math4
	-rm -f math4

