Makefile 94 B

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