mirror of
				https://git.code.sf.net/p/libpng/code.git
				synced 2025-07-10 18:04:09 +02:00 
			
		
		
		
	 3cec1a16f5
			
		
	
	
		3cec1a16f5
		
	
	
	
	
		
			
			Delete variables (ALIGN, ARCH, DOCS) and targets (writelock) that are no longer necessary. Reorder the object file lists alphabetically, consistently across all makefiles and build scripts. Apply other minor fixes.
		
			
				
	
	
		
			48 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			48 lines
		
	
	
		
			2.0 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| 
 | |
| cc_defs = /inc=$(ZLIBSRC)
 | |
| c_deb =
 | |
| 
 | |
| .ifdef __DECC__
 | |
| pref = /prefix=all
 | |
| .endif
 | |
| 
 | |
| OBJS = png.obj, pngerror.obj, pngget.obj, pngmem.obj, pngpread.obj,\
 | |
|        pngread.obj, pngrio.obj, pngrtran.obj, pngrutil.obj, pngset.obj,\
 | |
|        pngtrans.obj, pngwio.obj, pngwrite.obj, pngwtran.obj, pngwutil.obj
 | |
| 
 | |
| CFLAGS = $(C_DEB) $(CC_DEFS) $(PREF)
 | |
| 
 | |
| all : pngtest.exe libpng.olb
 | |
| 	@ write sys$output " pngtest available"
 | |
| 
 | |
| libpng.olb : libpng.olb($(OBJS))
 | |
| 	@ write sys$output " libpng available"
 | |
| 
 | |
| pngtest.exe : pngtest.obj libpng.olb
 | |
| 	link pngtest,libpng.olb/lib,$(ZLIBSRC)libz.olb/lib
 | |
| 
 | |
| test : pngtest.exe
 | |
| 	run pngtest
 | |
| 
 | |
| clean :
 | |
| 	delete *.obj;*,*.exe;
 | |
| 
 | |
| # Other dependencies.
 | |
| png.obj :      png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngerror.obj : png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngget.obj :   png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngmem.obj :   png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngpread.obj : png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngread.obj :  png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngrio.obj :   png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngrtran.obj : png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngrutil.obj : png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngset.obj :   png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngtrans.obj : png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngwio.obj :   png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngwrite.obj : png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngwtran.obj : png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| pngwutil.obj : png.h, pngconf.h, pnglibconf.h, pngpriv.h, pngstruct.h,pnginfo.h, pngdebug.h
 | |
| 
 | |
| pngtest.obj :  png.h, pngconf.h, pnglibconf.h
 |