Makefile (81B)
1CFLAGS = -lm 2 3all: pietp 4 5clean: 6 rm -f pietp 7 8pietp: pietp.c 9 10.PHONY: all clean