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