home *** CD-ROM | disk | FTP | other *** search
- #
- # Makefile for DOS machines running Borland C++
- #
-
- # Check for autodependencies (.H files)
-
- .autodepend
-
- CFLAGS = -ml -N -I.. -w-pro
-
- #
- # -ml = Large model
- # -N = Stack checking on (I would recommend this for the time being...)
- # -I = Use another include directory
- #
-
- .c.obj:
- bcc -c $(CFLAGS) $<
-
- richtext: richtext.exe
-
- richtext.exe: richtext.obj richlex.obj richset.obj iso2022.obj usascii.obj
- tlink c0l richtext richlex richset iso2022 usascii ,richtext,,cl;
-