home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c082_144 / 5.ddi / WEXAMPLE.ZIP / WHELLO.MAK < prev    next >
Encoding:
Text File  |  1992-06-10  |  432 b   |  18 lines

  1. # Borland C++ - (C) Copyright 1991 by Borland International
  2. # Makefile for WHELLO program
  3.  
  4. whello.exe: whello.obj whello.def whello.res
  5.     tlink /Tw /v /n /c C:\BORLANDC\LIB\c0ws whello,\
  6.           whello,\
  7.           ,\
  8.           C:\BORLANDC\LIB\cws C:\BORLANDC\LIB\cs C:\BORLANDC\LIB\import,\
  9.           whello 
  10.     rc whello.res
  11.  
  12. .cpp.obj :
  13.     BCC -c -ms -v -W $<
  14.  
  15. .rc.res :
  16.     rc -r -iC:\BORLANDC\INCLUDE $<
  17. 
  18.