home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / metamail / richmail / MAKEFILE.BCC < prev    next >
Encoding:
Text File  |  1993-04-13  |  468 b   |  24 lines

  1. #
  2. # Makefile for DOS machines running Borland C++
  3. #
  4.  
  5. # Check for autodependencies (.H files)
  6.  
  7. .autodepend
  8.  
  9. CFLAGS = -ml -N -I.. -w-pro
  10.  
  11. #
  12. # -ml = Large model
  13. # -N  = Stack checking on (I would recommend this for the time being...)
  14. # -I  = Use another include directory
  15. #
  16.  
  17. .c.obj:
  18.     bcc -c $(CFLAGS) $<
  19.  
  20. richtext: richtext.exe
  21.  
  22. richtext.exe: richtext.obj richlex.obj richset.obj iso2022.obj usascii.obj
  23.     tlink c0l richtext richlex richset iso2022 usascii ,richtext,,cl;
  24.