Makefile 136 B

1234567891011
  1. OPTIONS:=
  2. strlisp: strlisp.c
  3. gcc -Wall -std=c99 -pedantic -g strlisp.c -o strlisp $(OPTIONS)
  4. clean:
  5. rm -rf strlisp
  6. run:
  7. ./strlisp