home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / comos2.zip / TEST32.MAK < prev    next >
Text File  |  1992-12-18  |  273b  |  15 lines

  1. #
  2. #  This make file compiles the 32 bit test program using the IBM C/C++
  3. #  compiler from the Nov PDK
  4. #
  5.  
  6. COMPILEOPTIONS = /Tdc /Ss
  7.  
  8. test32.exe   : test32.obj
  9.   link386 @test32.lnk
  10.  
  11. test32.obj   : test32.c
  12.   echo icc test32.c
  13.   icc $(COMPILEOPTIONS) test32.c
  14.  
  15.