home *** CD-ROM | disk | FTP | other *** search
/ Compressed Image File Formats / CompressedImageFileFormatsJohnMiano.iso / pc / Library / PNG / borland.mak < prev    next >
Encoding:
Text File  |  1998-12-26  |  391 b   |  19 lines

  1. .autodepend
  2.  
  3. CC=BCC32
  4. OPTIMIZATIONS=-6 -a4 -O2 
  5. DIRS=-I..\INCLUDE
  6. CPPFLAGS=-w-inl
  7.  
  8. .cpp.obj: 
  9.   $(CC) -c $(CPPFLAGS) $(OPTIMIZATIONS) $(DIRS) $<
  10.  
  11. TARGETS: encoder.exe decoder.exe
  12.  
  13. encoder.exe: encoder.obj ..\BC\LIBIMAGE.LIB
  14.   bcc32 -s $**
  15.                                                                          
  16. decoder.exe: decoder.obj ..\BC\LIBIMAGE.LIB
  17.   bcc32 -s $**
  18.  
  19.