 e7d163f766
			
		
	
	
	e7d163f766
	
	
	
		
			
			Removed an unnecessary local copy of zlib (sorry for the add'l traffic). Fixed 'O=' support (thanks to Jan Dittmer for pointing it out). Some minor clean-ups in the make files. Signed-off-by: Chris Zankel <chris@zankel.net> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			372 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			372 B
			
		
	
	
	
		
			Makefile
		
	
	
	
	
	
| #
 | |
| # Makefile for some libs needed by zImage.
 | |
| #
 | |
| 
 | |
| zlib	:= infblock.c infcodes.c inffast.c inflate.c inftrees.c infutil.c
 | |
| 
 | |
| lib-y	+= $(zlib:.c=.o) zmem.o
 | |
| 
 | |
| EXTRA_CFLAGS	+= -Ilib/zlib_inflate
 | |
| 
 | |
| quiet_cmd_copy_zlib = COPY    $@
 | |
|       cmd_copy_zlib = cat $< > $@
 | |
| 
 | |
| $(addprefix $(obj)/,$(zlib)): $(obj)/%: $(srctree)/lib/zlib_inflate/%
 | |
| 	$(call cmd,copy_zlib)
 | |
| 
 | |
| clean-files	:= $(zlib)
 |