Makefile 220 B

12345678910111213141516
  1. CC=gcc -g
  2. all: test expand reverse_string
  3. clean:
  4. rm test;
  5. test: test.c
  6. $(CC) -o test test.c
  7. expand: expand.c
  8. $(CC) -o expand expand.c
  9. reverse_string: reverse_string.c
  10. $(CC) -o reverse_string reverse_string.c