8 lines
		
	
	
	
		
			137 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			137 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
CC=gcc --std=gnu99 -g
 | 
						|
output=myCounter
 | 
						|
 | 
						|
all: main.c main.h  
 | 
						|
	$(CC) main.c -lpthread -o $(output)
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -fr *.o vgcore.* $(output)
 |