Makefile 87 B

1234567
  1. PROGRAM = hungman
  2. CFLAGS = -s -Wall -std=c99
  3. all:$(PROGRAM)
  4. clean:
  5. rm -rf $(PROGRAM)