home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a054 / 1.img / GETPRGS.EXE / GETS.RMK < prev    next >
Encoding:
Text File  |  1992-03-09  |  2.6 KB  |  118 lines

  1. .prg.obj:
  2.     Clipper $* /a /m /n /w
  3.  
  4. .asm.obj:
  5.     Masm $*;
  6.  
  7. .obj.exe:
  8.     set rtlinkcmd=/positional
  9.     Rtlink $** /pll:base50;
  10.  
  11. Dict.obj: Dict.prg
  12.  
  13. // Lookup function in valid clause using TBrowse objects to browse
  14. // a range of records
  15. gets01.obj: gets01.prg
  16. gets01.exe: gets01.obj
  17.  
  18. // Simple when illustrating awkward problem
  19. gets02.obj: gets02.prg
  20. gets02.exe: gets02.obj
  21.  
  22. // Simple when, handling awkward problem
  23. gets03.obj: gets03.prg
  24. gets03.exe: gets03.obj
  25.  
  26. // Simple when example handling problem, no hard coding of array
  27. // indeces, handling say text
  28. gets04.obj: gets04.prg
  29. gets04.exe: gets04.obj
  30.  
  31. // Simple radio button
  32. gets05.obj: gets05.prg
  33. gets05.exe: gets05.obj
  34.  
  35.  
  36. // Example illustrating issuing gets from database
  37. // Edit to Memvar
  38. gets06.obj: gets06.prg
  39. gets06.exe: gets06.obj
  40.  
  41.  
  42. // Example illustrating issuing gets from database
  43. // Save in our own array of GET objects - edit to memvars.
  44. Gets07.obj: gets07.prg
  45. gets07.exe: gets07.obj
  46.  
  47. // Example illustrating issuing gets from database
  48. // Save in our own array of GET objects - edit to memvars.
  49. // User priveledges for multi-user environment
  50. gets08.obj: gets08.prg
  51. gets08.exe: gets08.obj dict.obj
  52.  
  53. // Get reader implementing timeout
  54. gets09.obj: gets09.prg
  55. gets09.exe: gets09.obj
  56.  
  57. // READ timeout
  58. gets10.obj: gets10.prg
  59. gets10.exe: gets10.obj
  60.  
  61. // Get Reader implementing during clause
  62. gets11.obj: gets11.prg
  63. gets11.exe: gets11.obj
  64.  
  65. // Get Reader implementing during clause allowing exit
  66. gets12.obj: gets12.prg
  67. gets12.exe: gets12.obj
  68.  
  69. // Get Reader for memos
  70. gets13.obj: gets13.prg
  71. gets13.exe: gets13.obj
  72.  
  73. // Get Reader for passwords - echoes asterisks
  74. gets14.obj: gets14.prg
  75. gets14.exe: gets14.obj
  76.  
  77. // Get Reader for calculator-style input
  78. gets15.obj: gets15.prg
  79. gets15.exe: gets15.obj
  80.  
  81. // Get reader implementing updated on a per-get basis
  82. gets16.obj: gets16.prg
  83. gets16.exe: gets16.obj
  84.  
  85. // Get reader to implement edit sensing in a multi-user environment
  86. gets17.obj: gets17.prg
  87. gets17.exe: gets17.obj
  88.  
  89. // Get command to implement GET TO VAR
  90. gets18.obj: gets18.prg
  91. gets18.exe: gets18.obj
  92.  
  93. // Get command to implement READ TO VAR
  94. gets19.obj: gets19.prg
  95. gets19.exe: gets19.obj
  96.  
  97. // GOTO GET
  98. gets20.obj: gets20.prg
  99. gets20.exe: gets20.obj
  100.  
  101. // Mouse driver code
  102. mouse.obj: mouse.asm
  103.  
  104. // Mouse reader
  105. gets21.obj: gets21.prg
  106. gets21.exe: gets21.obj mouse.obj
  107.  
  108. // SECTIONED gets
  109. gets22.obj: gets22.prg
  110. gets22.exe: gets22.obj dict.obj
  111.  
  112. // Get object inspector / debugger
  113. getlyser.obj: getlyser.prg
  114.  
  115. // Demo of get analyser
  116. demo.obj: demo.prg
  117. demo.exe: demo.obj getlyser.obj
  118.