home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / dev / misc / phxlnk / product-info < prev   
Encoding:
Fred Fish's Product-Info  |  1995-10-25  |  2.2 KB  |  102 lines

  1. .name
  2. PhxLnk
  3. .type
  4. Linker
  5. .aminet-dir
  6. dev/misc
  7. .short
  8. AmigaDOS module linker
  9. .description
  10. PhxLnk supports all features of a standard Amiga-DOS linker (like BLink),
  11. except of overlay hunks and automatic link vectors (ALV).
  12.  
  13. Implemented functions:
  14. o Links object files and libraries (SAS/C extended libraries also)
  15. o Sections may be forced to Chip-memory
  16. o Small Code, Small Data
  17. o SAS/C-Blink Small Data compatibility available
  18. o '_MERGED' sections are recognized automatically (and coalesced like
  19.   Small Data sections)
  20. o Symbolic and Source Level Debugging (PowerVisor compatibility included)
  21. o Debug blocks are removed on request
  22. o Deletes empty sections
  23. o Zero bytes at the end of a section are deleted and appear in the
  24.   HUNK_HEADER block only
  25. o User may define absolute external symbols
  26.  
  27. PhxLnk is FREEWARE.
  28. .version
  29. 4.15
  30. .date
  31. 1995.03.19
  32. .author
  33. Frank Wille
  34. .requirements
  35. V4.00 requires OS2.04 (OS1.x users should get version 3.97)
  36. .reference
  37. FreshFish-Vol8-1:New/dev/misc/PhxLnk/
  38. 4.00
  39. FreshFish-Vol8-2:BBS/dev/PhxLnk-4.00.lha
  40. 4.00
  41. FreshFish-Vol2:New/AmigaLibDisks/Disk933/PhxLnk/
  42. 2.03
  43. GoldFish-Vol1-2:d9xx/d933/PhxLnk/
  44. 2.03
  45. AmigaLibDisk933:PhxLnk/
  46. 2.03
  47. FreshFish-Vol2:Old/AmigaLibDisks/Disks840-859/Disk853/PhxLnk/
  48. 1.35
  49. FreshFish-Vol1:Old/AmigaLibDisks/Disks840-859/Disk853/PhxLnk/
  50. 1.35
  51. GoldFish-Vol1-2:d8xx/d853/PhxLnk/
  52. 1.35
  53. AmigaLibDisk853:PhxLnk/
  54. 1.35
  55. FreshFish-Vol1:Old/AmigaLibDisks/Disks740-759/Disk749/PhxLnk/
  56. 1.27
  57. GoldFish-Vol1-2:d7xx/d749/PhxLnk/
  58. 1.27
  59. AmigaLibDisk749:PhxLnk/
  60. 1.27
  61. .distribution
  62. Freeware
  63. .address
  64. Auf dem Dreische 45
  65. 32049 Herford
  66. GERMANY
  67. .email
  68. Phoenix@AXXIS.OWL.DE
  69. .docs
  70. PhxLnk_414.readme
  71. PhxLnk.guide
  72. PhxLnk_d.guide
  73. .described-by
  74. Dan Fish (daf@starfish.amigalib.com)
  75. .submittal
  76. Downloaded via ftp from wuarchive.wustl.edu.
  77. .execute
  78. set choice `RequestChoice "PhxLnk" "Please select an option" "View Readme" "View Guide" "Cancel"`
  79.  
  80. if $choice EQ "0"
  81.   quit 5
  82. endif
  83.  
  84. if $choice EQ "1"
  85.   MetaTool PhxLnk_414.readme TEXT
  86. endif
  87.  
  88. if $choice EQ "2"
  89.   set choice2 `RequestChoice "Language Selection" "Please select a language" "Deutsch" "English" "Cancel"`
  90.   if $choice2 EQ "0"
  91.     quit 0
  92.   endif
  93.  
  94.   if $choice2 EQ "1"
  95.     MetaTool PhxLnk_d.guide GUIDE
  96.   endif
  97.  
  98.   if $choice2 EQ "2"
  99.     MetaTool PhxLnk.guide GUIDE
  100.   endif
  101. endif
  102.