home *** CD-ROM | disk | FTP | other *** search
/ Piper's Pit BBS/FTP: ibm 0040 - 0049 / ibm0040-0049 / ibm0040.tar / ibm0040 / ZINC_2.ZIP / RADIO.LIF / MAKEFILE next >
Encoding:
Text File  |  1991-05-13  |  1.1 KB  |  36 lines

  1. # To make these tutorial programs you must:
  2. #
  3. # 1. Update your TURBOC.CFG (contained in the main borland path) to contain 
  4. #    the Borland and Zinc include and library paths.  For example, we have
  5. #    the following definitions in our TURBOC.CFG file:
  6. #
  7. #        -IC:\BTCPP200\INCLUDE;C:\ZIL200;.
  8. #        -LC:\BTCPP200\LIB;C:\ZIL200;.
  9. #
  10. # 2. Update your TLINK.CFG (contained in the main borland path) to contain 
  11. #    the Borland and Zinc library paths.  For example, we have the following
  12. #    definitions in our TLINK.CFG file:
  13. #
  14. #        -LC:\BTCPP200\LIB;C:\ZIL200;.
  15. #
  16. # 3. Specify the program you want to make.  The following make options
  17. #    are available.
  18. #
  19. #        make radio.exe             (makes the radio tutorial program)
  20. #        make wradio.exe            (makes the Windows radio program)
  21.  
  22. COPTS=-O -Z -V -w -c               # DOS Production options
  23. EXEOPTS=/c /x
  24. #COPTS=-v -w -c                    # DOS Debugging options
  25. #EXEOPTS=/c /v
  26.  
  27. .SWAP
  28. .cpp.obj :
  29.     bcc -ml $(COPTS) {$< }
  30.  
  31. radio.exe : radio.obj
  32.     tlink $(EXEOPTS) @&&!
  33. c0l+radio, radio, , zill graphics cl
  34. !
  35.  
  36.