Makefile 74 B

12345678
  1. all: append
  2. clean:
  3. rm append
  4. append: append.c
  5. gcc -o append append.c