Makefile 94 B

12345678
  1. OPTIONS:=
  2. ps: ps.c
  3. gcc -Wall -std=c99 -pedantic -g ps.c -o ps $(OPTIONS)
  4. clean:
  5. rm -rf ps