useful to see if an IFF file is malformed, but also to see how many frames there is in an animation, etc.
		
			
				
	
	
		
			11 lines
		
	
	
		
			99 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			99 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
CFLAGS = -Wall
 | 
						|
 | 
						|
.PHONY:	all clean
 | 
						|
 | 
						|
all: parseiff
 | 
						|
 | 
						|
clean:
 | 
						|
	$(RM) *.o parseiff
 | 
						|
 | 
						|
parseiff:	parseiff.o
 |