1BGLAFILE(1) General Commands Manual BGLAFILE(1)
2
3
4
6 Bglafile - a Module Access File Generator
7
8
10 bglafile [ options ] file ...
11
12
14 Bglafile is a Module Access File generator. It produces file that suits
15 Bigloo option -afile. A Module Access File is a scheme list. Each ele‐
16 ments of that list is a list of at least two elements: a module name,
17 the file that implements that module. For BEE (the Bigloo Integrated
18 Development Environment) to be able to retrieve files from module
19 names, it is mandatory that the first parentheses of the global list is
20 left alone on one line.
21
22
24 file Is an file implementing a module. Bglafile reads
25 that file to discover the name of the implemented
26 module.
27
28
29 -v Verbose mode
30
31
32 -o <file> Print Module Access File into file. The default is
33 to print the list on the standard output device.
34
35
36 -suffix <suf> Adds suf to the bglafile source file suffixes
37 list. Default suffixes are "scm", "sch" and "bgl".
38
39
41 If the three files exists and contain legal Bigloo module
42 clause, then:
43
44 $ bglafile foo.scm bar.scm gee.scm
45
46 could print out a list like:
47
48 ;; foo
49 ;; Tue Aug 15 12:17:24 1998
50
51 (
52 (foo "foo.scm")
53 (bar "bar.scm")
54 (gee "gee.scm")
55 )
56
57
59 bigloo(1), bgldepend(1), bglmake(1), bglpp(1), bglprof(1), bglt‐
60 ags(1)
61
62
64 Manuel SERRANO, Manuel.Serrano@inria.fr
65
66
67
68
69
70 Aug 15 1998 BGLAFILE(1)