home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / cmprss.zip / sample.zip / Smash.MAK < prev    next >
Text File  |  1994-06-15  |  803b  |  30 lines

  1. # Created by IBM WorkFrame/2 MakeMake at 23:46:45 on 06/14/94
  2. #
  3. # This makefile should be run in the following directory:
  4. #   d:\develop\compress\sample
  5. #
  6. # The actions included in this makefile are:
  7. #   COMPILE::C Set ++ Compile
  8.  
  9. .all: \
  10.   .\Smash.obj \
  11.   .\Smash.exe
  12.  
  13. .SUFFIXES:
  14.  
  15. .SUFFIXES: .c
  16.  
  17. .c.exe:
  18.       @echo WF::COMPILE::C Set ++ Compile
  19.       icc.exe Compress.LIB /Tdc /Wclscmpcndcnscnvcpydcleffenuextgengnrgotinilanobsordparporppcprorearettrdtruunduniusevft /Tx /Fi /Si /O /G5 %s
  20.  
  21. .c.obj:
  22.       @echo WF::COMPILE::C Set ++ Compile
  23.       icc.exe Compress.LIB /Tdc /Wclscmpcndcnscnvcpydcleffenuextgengnrgotinilanobsordparporppcprorearettrdtruunduniusevft /Tx /Fi /Si /O /G5 %s
  24.  
  25. .\Smash.exe \
  26.   .\Smash.obj: \
  27.     d:\develop\compress\sample\Smash.c \
  28.     Smash.MAK
  29.  
  30.