home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_02_12 / 2n12025b < prev    next >
Text File  |  1991-11-02  |  490b  |  16 lines

  1. #  Makefile (Borland C++) for FRONTEND program
  2.  
  3. frontend.exe : frontend.obj frontend.res frontend.lnk
  4.   tlink /Twe c0ws frontend, frontend, frontend, cwins\
  5.              cs import wxqlcall, frontend.def
  6.   rc -iy:\p\bcpp\20\
  7.       c:\bcpp\include frontend.rc
  8.  
  9. frontend.obj : frontend.c frontend.h frontend.mak
  10.   bcc -Iy:\p\bcpp\20\
  11.        c:\bcpp\include -W -c -ms frontend.c
  12.  
  13. frontend.res : frontend.rc frontend.h
  14.   rc -r -iy:\p\bcpp\20\
  15.          c:\bcpp\include frontend.rc
  16.