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

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