1BGLJFILE(1) General Commands Manual BGLJFILE(1)
2
3
4
6 Bgljfile - a Jvm Access File Generator
7
8
10 bgljfile [ options ] file ...
11
12
14 Bgljfile is a Jvm Access File generator. It produces file that suits
15 Bigloo option -bgljfile. A Jvm 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 Java class file that implements that module.
18
19
21 file Is an file implementing a module. Bgljfile reads
22 that file to discover the name of the implemented
23 module.
24
25
26 -base Set the Jvm base package.
27
28
29 -o <file> Print Module Access File into file. The default is
30 to print the list on the standard output device.
31
32
33 -suffix <suf> Adds suf to the bgljfile source file suffixes
34 list. Default suffixes are "scm", "sch" and "bgl".
35
36
38 If the three files exists and contain legal Bigloo module
39 clause, then:
40
41 $ bgljfile foo.scm bar.scm gee.scm
42
43 could print out a list like:
44
45 (
46 (foo "./foo")
47 (bar "./bar")
48 (gee "./gee")
49 )
50
51
53 bigloo(1), bgldepend(1), bglmake(1), bglpp(1), bglprof(1), bglt‐
54 ags(1)
55
56
58 Manuel SERRANO, Manuel.Serrano@inria.fr
59
60
61
62 Mar 8 2001 BGLJFILE(1)