You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
	
		
		
			
				
				
					
						
						
						
							 | 
							
							CC=gcc
 | 
						
						
						
						
							 | 
							
							CFLAGS=-Wall -O1
 | 
						
						
						
						
							 | 
							
							PROGRAMS=pixel struct2
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							all: $(PROGRAMS) 
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							pixel:
 | 
						
						
						
						
							 | 
							
								$(CC) -o pixel $(CFLAGS) pixel.c
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							struct2:
 | 
						
						
						
						
							 | 
							
								$(CC) -o struct2 $(CFLAGS) struct2.c
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							clean:
 | 
						
						
						
						
							 | 
							
								rm -f $(PROGRAMS)
 | 
						
						
						
						
							 | 
							
							
 | 
						
						
						
						
							 | 
							
							.PHONY=clean
 |