1
2 /* HISTORY COMMENTS:
3 1) change2022-08-01Swenson, approve2022-08-01None:
4 Added library descriptor for AML library.
5 END HISTORY COMMENTS */
6
7 Descriptor: aml_libraries_;
8
9 Define: commands;
10
11 command: library_info;
12 library names: aml;
13
14 command: library_map;
15 library names: aml;
16 search names: **;
17
18 command: library_print;
19 library names: aml.info;
20 search names: **.*.info;
21
22 command: library_fetch;
23 library names: aml;
24
25 command: library_cleanup;
26 library names: aml;
27 search names: !??????????????;
28
29 /* GLOBAL */
30
31 Root: aml "".source s "";
32 path: >ldd>aml>source;
33 search procedure: multics_library_search_$source_dirs;
34
35 Root: aml "".object o "";
36 path: >ldd>aml>object;
37 search procedure: multics_library_search_$object_dirs;
38
39 Root: aml "".execution x "";
40 path: >aml;
41 search procedure: multics_library_search_$execution_dirs;
42
43 Root: aml "" lang.include incl "";
44 path: >ldd>aml>include;
45 search procedure: multics_library_search_$list_info_dirs;
46
47 Root: aml "".info "";
48 path: >doc>aml_info;
49 search procedure: multics_library_search_$list_info_dirs;
50
51 Root: aml "".log "";
52 path: >ldd>aml>log;
53 search procedure: multics_library_search_$list_info_dirs;
54
55 End: aml_libraries_;
56
57