home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a016 / 1.ddi / CLP / SAMPLE50.LNK < prev    next >
Encoding:
Text File  |  1992-03-15  |  2.4 KB  |  81 lines

  1. #
  2. # Blinker 2.0 Sample Link file for Clipper 5.01
  3. #
  4. # This sample script is intended to be used as a template for your own scripts
  5. #
  6. # Please refer to the manual for specific instructions for 3rd party libraries.
  7. # In all cases the information provided by the vendor of a library for linking
  8. # with BLINKER should supercede information in the Blinker manual or files.
  9. #
  10. # This script is set up a a development script, that enables incremental
  11. # linking, and overlays only EXTEND.LIB from the Nantucket libraries. When
  12. # incremental linking is enabled, applications will use somewhat more memory
  13. # than normal, due to a certain amount of 'padding' being left at the end
  14. # of each Clipper procedure, but this is offset by the extremely fast
  15. # incremental link times.
  16. #
  17. # Before shipping a completed application, you should disable the incremental
  18. # linking feature, which will save memory, and increase execution speed by:
  19. #
  20. #         a) Enabling the 5.01 Clipper paging system
  21. #         b) Removing the padding between procedures
  22. #         c) Turning on symbol table compression
  23. #
  24. # For final links - UN-COMMENT the following command:
  25. #
  26. #BLINKER INCREMENTAL OFF
  27. #
  28. # Burn in your own Clipper variables here eg: F25;SWAPPATHC:\;
  29. #
  30. BLINKER EXECUTABLE CLIPPER F25;SWAPPATHC:\SWP;
  31. #
  32. # Specify the EXE filename here:
  33. #
  34. OUTPUT <EXE filename>
  35. #
  36. # List your Clipper 5.01 object modules here. The first FILE mentioned in any
  37. # Blinker link script MUST be a Clipper code module. The first module may be
  38. # overlaid if required.
  39. #
  40. FILE <MAIN Clipper routine>
  41. #
  42. BEGINAREA
  43. #
  44. #   List the rest of your Clipper code files here.
  45. #
  46.     FILE <next Clipper file>
  47.     FILE <next Clipper file>
  48. #
  49. #   UNCOMMENT and list your own Clipper code libraries here
  50. #
  51. #    LIBRARY <my library>
  52. #    LIBRARY <my other library>
  53. #
  54. #   UNCOMMENT and list your overlayable 3rd party libraries here
  55. #
  56. #    LIBRARY <3rd party>
  57. #    LIBRARY <3rd party>
  58. ENDAREA
  59. #
  60. # Uncomment and list your 3rd party non overlayable object modules here
  61. # eg: OVERLAY's RESIDENT.OBJ
  62. #
  63. #FILE <3rd party1>,<3rd party2>
  64. #
  65. # UNCOMMENT and list 3rd party non-overlayable libraries here:
  66. #
  67. #LIB <3rd party>
  68. #
  69. # If you want the 5.01 debugger UN-COMMENT the following:
  70. # NOTE: The 5.01 debugger library MUST be specified as a FILE
  71. #
  72. # FILE CLD.LIB
  73. #
  74. # Call the distribution script to overlay EXTEND.LIB
  75. #
  76. @CL501MIN.LNK
  77. #
  78. # Microsoft LLIBCA C library comes last if needed
  79. #
  80. # LIB LLIBCA
  81.