Makefile 119 B

123456789
  1. OPTIONS:=
  2. OPTIONS+= -l m
  3. sine: sine.c
  4. gcc -Wall -std=c99 -pedantic -g sine.c -o sine $(OPTIONS)
  5. clean:
  6. rm -rf sine