Makefile 83 B

123456
  1. all: pi.c
  2. gcc -std=c99 -Wall -o pi.exe pi.c
  3. clean:
  4. rm -f pi.exe *.o core.* *~