home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a065 / 1.img / TBPRGS.EXE / TB.RMK < prev    next >
Encoding:
Text File  |  1992-03-10  |  4.7 KB  |  170 lines

  1. .prg.obj:
  2.     Clipper $* /a /m /n /w
  3.  
  4. .obj.exe:
  5.     set rtlinkcmd=/positional
  6.     rtlink $** /pll:base50;
  7.  
  8. // Nan's dictionary program
  9. dict.obj: dict.prg
  10.  
  11. // Tbrowse / Tbcolumn utility routines
  12. tbutils.obj: tbutils.prg
  13.  
  14. // Basic database browse
  15. tb01.obj: tb01.prg
  16. tb01.exe: tb01.obj
  17.  
  18. // Basic database browse with cosmetics
  19. tb02.obj: tb02.prg
  20. tb02.exe: tb02.obj
  21.  
  22. // Basic database browse allowing user to move / resize the window
  23. // with the arrow keys.
  24. tb03.obj: tb03.prg
  25. tb03.exe: tb03.obj dict.obj
  26.  
  27. // Rewrite of Tb02 to use the StdMeth()
  28. tb04.obj: tb04.prg
  29. tb04.exe: tb04.obj tbutils.obj dict.obj
  30.  
  31. // myBrowse1 - simple standardized browse
  32. tb05.obj: tb05.prg
  33.  
  34. // Simple driver for mybrowse1
  35. tb06.obj: tb06.prg
  36. tb06.exe: tb06.obj tbutils.obj tb05.obj dict.obj
  37.  
  38. // myBrowse2 - standard browse allowing parameterization
  39. tb07.obj: tb07.prg tbutils.ch
  40.  
  41. // Driver for myBrowse2
  42. tb08.obj: tb08.prg
  43. tb08.exe: tb08.obj tbutils.obj tb07.obj dict.obj
  44.  
  45. // Generic While condition test routine
  46. tb09.obj: tb09.prg
  47. tb09.exe: tb09.obj tbutils.obj tb07.obj dict.obj
  48.  
  49. // Hard-coded for condition
  50. tb10.obj: tb10.prg
  51. tb10.exe: tb10.obj tbutils.obj tb07.obj dict.obj
  52.  
  53. // General purpose for condition test routine
  54. tb11.obj: tb11.prg
  55. tb11.exe: tb11.obj tbutils.obj tb07.obj dict.obj
  56.  
  57. // Driver code for sample tbrowse routines using both while and
  58. // for clauses
  59. tb12.obj: tb12.prg
  60. tb12.exe: tb12.obj tbutils.obj tb07.obj dict.obj
  61.  
  62. // Driver code for sample tbrowse routines using both while and
  63. // for clauses. Uses dbSkipBlock. Rewrite of tb12
  64. tb13.obj: tb13.prg
  65. tb13.exe: tb13.obj tbutils.obj tb07.obj  dict.obj
  66.  
  67. // Generic tbrowse code for editing databases - No append mode
  68. tb14.obj: tb14.prg
  69. tb14.exe: tb14.obj tbutils.obj tb07.obj dict.obj
  70.  
  71. // Generic tbrowse code for editing databases - editing all columns
  72. // No append mode
  73. tb15.obj: tb15.prg
  74. tb15.exe: tb15.obj tbutils.obj tb07.obj dict.obj
  75.  
  76. // Sample tbrowse of entire database allowing edit and append mode
  77. // Append Mode stored in TBrowse object's cargo instance variable.
  78. tb16.obj: tb16.prg
  79. tb16.exe: tb16.obj tbutils.obj dict.obj
  80.  
  81. // Sample tbrowse of entire database allowing edit and AUTOMATIC append
  82. // mode. Append Mode stored in TBrowse object's cargo instance variable.
  83. tb17.obj: tb17.prg
  84. tb17.exe: tb17.obj tbutils.obj dict.obj
  85.  
  86. // Sample tbrowse of database with while and for condition
  87. // allowing edit and append mode
  88. tb18.obj: tb18.prg
  89. tb18.exe: tb18.obj tbutils.obj dict.obj
  90.  
  91. // Uses TBfwaBrowse to create the tbrowse object with goTopBlock,
  92. // goBottomBlock, and skipBlock set to browse databases with while and
  93. // for conditions and append mode
  94. tb19.obj: tb19.prg
  95. tb19.exe: tb19.obj tbutils.obj dict.obj
  96.  
  97. // 1 - M data entry. Uses TBfwaBrowse to create second tbrowse object,
  98. // uses automatic and persistent append mode. Good example of
  99. // append mode with empty scopes.
  100. tb20.obj: tb20.prg
  101. tb20.exe: tb20.obj tbutils.obj dict.obj
  102.  
  103. // Tchoice - Achoice replacement
  104. tb21.obj: tb21.prg
  105. tb21.exe: tb21.obj tbutils.obj dict.obj
  106.  
  107. // Generic 2d Array browser
  108. tb22.obj: tb22.prg
  109.     Clipper tb22 /a /m /n /w /dTEST
  110. tb22.exe: tb22.obj tbutils.obj dict.obj tb07.obj
  111.  
  112. // Browsing nested arrays to 2 dimensions
  113. tb23.obj: tb23.prg
  114.     Clipper tb23 /a /m /n /w /dTEST
  115. tb23.exe: tb23.obj tbutils.obj dict.obj
  116.  
  117. // Browsing nested arrays to any depth
  118. tb24.obj: tb24.prg
  119.     Clipper tb24 /a /m /n /w /dTEST
  120. tb24.exe: tb24.obj tbutils.obj dict.obj
  121.  
  122. // Multiple Select box
  123. tb25.obj: tb25.prg
  124. tb25.exe: tb25.obj tbutils.obj dict.obj
  125.  
  126. // TBrowse Pull-Down Menu
  127. tb26.obj: tb26.prg
  128.     Clipper tb26 /a /m /n /w /dTEST
  129. tb26.exe: tb26.obj tbutils.obj dict.obj
  130.  
  131. // File browsing code
  132. tb27.obj: tb27.prg
  133.     Clipper tb27 /a /m /n /w
  134. tb27.exe: tb27.obj Tbutils.obj Dict.obj
  135.  
  136. // Browsing on > 1 Line
  137. tb28.obj: tb28.prg
  138. tb28.exe: tb28.obj tbutils.obj dict.obj tb07.obj
  139.  
  140. // Generic version of tb28
  141. Tb29.obj: Tb29.prg
  142. Tb29.exe: Tb29.obj Tbutils.obj Dict.obj Tb07.obj
  143.  
  144. // Browsing records on > 1 line, highlighting entire records and
  145. // moving between records
  146. Tb30.obj: Tb30.prg
  147. Tb30.exe: Tb30.obj Tbutils.obj Dict.obj Tb07.obj
  148.  
  149. // Browsing databases and their structures in 2 windows
  150. Tb31.obj: Tb31.prg
  151. Tb31.exe: Tb31.obj Tbutils.obj Dict.obj
  152.  
  153. // Browsing databases and their structures in 2 windows
  154. // Optimized version of Tb31
  155. Tb311.obj: Tb311.prg
  156. Tb311.exe: Tb311.obj Tbutils.obj Dict.obj
  157.  
  158. // Browsing databases and their structures in 2 windows
  159. // Optimized version of Tb311
  160. Tb312.obj: Tb312.prg
  161. Tb312.exe: Tb312.obj Tbutils.obj Dict.obj
  162.  
  163. // Tbrowse inspector / debugger
  164. Tbinsp.obj:   Tbinsp.prg
  165.  
  166. // Demo containing call to Tbrowse inspector / debugger
  167. Tbindemo.obj: Tbindemo.prg
  168. Tbindemo.exe: Tbindemo.obj Tbinsp.obj Tb07.obj Tbutils.obj Dict.obj
  169.  
  170.