No Description

Makefile 91B

1234567
  1. all: kilo
  2. kilo: kilo.c
  3. $(CC) -o kilo kilo.c -Wall -W -pedantic -std=c99
  4. clean:
  5. rm kilo