home *** CD-ROM | disk | FTP | other *** search
- # To make these tutorial programs you must:
- #
- # 1. Update your TURBOC.CFG (contained in the main borland path) to contain
- # the Borland and Zinc include and library paths. For example, we have
- # the following definitions in our TURBOC.CFG file:
- #
- # -IC:\BTCPP200\INCLUDE;C:\ZIL200;.
- # -LC:\BTCPP200\LIB;C:\ZIL200;.
- #
- # 2. Update your TLINK.CFG (contained in the main borland path) to contain
- # the Borland and Zinc library paths. For example, we have the following
- # definitions in our TLINK.CFG file:
- #
- # -LC:\BTCPP200\LIB;C:\ZIL200;.
- #
- # 3. Specify the program you want to make. The following make options
- # are available.
- #
- # make radio.exe (makes the radio tutorial program)
- # make wradio.exe (makes the Windows radio program)
-
- COPTS=-O -Z -V -w -c # DOS Production options
- EXEOPTS=/c /x
- #COPTS=-v -w -c # DOS Debugging options
- #EXEOPTS=/c /v
-
- .SWAP
- .cpp.obj :
- bcc -ml $(COPTS) {$< }
-
- radio.exe : radio.obj
- tlink $(EXEOPTS) @&&!
- c0l+radio, radio, , zill graphics cl
- !
-
-