12 lines
		
	
	
		
			158 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			158 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
 | 
						|
all:
 | 
						|
	gcc --std=c99 program.c -o program
 | 
						|
	gcc --std=c99 solution.c -o solution
 | 
						|
test:
 | 
						|
	./test.sh
 | 
						|
execute:
 | 
						|
	./execute.sh
 | 
						|
clean:
 | 
						|
	rm -f program
 | 
						|
	rm -f solution
 |