home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Library / PNG / msvc.mak < prev   
Encoding:
Text File  |  1998-12-17  |  356 b   |  18 lines

  1. CC=CL
  2.  
  3. OPTIMIZATIONS=/Ox
  4. DIRS=/I..\INCLUDE
  5. CPPFLAGS=/GX
  6.  
  7. .cpp.obj: 
  8.   $(CC) -c $(CPPFLAGS) $(OPTIMIZATIONS) $(DIRS) $<
  9.  
  10. TARGETS: encoder.exe decoder.exe
  11.  
  12. encoder.exe: encoder.obj ..\MSVC\LIBIMAGE.LIB
  13.   cl $**
  14.                                                                          
  15. decoder.exe: decoder.obj ..\MSVC\LIBIMAGE.LIB
  16.   cl $**
  17.  
  18.