10 lines
		
	
	
	
		
			101 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			101 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
 | 
						|
all: child_test.c
 | 
						|
	gcc -o child_test child_test.c
 | 
						|
 | 
						|
test:
 | 
						|
	./run_tests 10
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f child_test
 | 
						|
 |