Makefile 101 B

12345678910
  1. all: child_test.c
  2. gcc -o child_test child_test.c
  3. test:
  4. ./run_tests 10
  5. clean:
  6. rm -f child_test