BGLDEPEND(1) General Commands Manual BGLDEPEND(1)

bgldepend - create Bigloo dependencies in makefiles

bgldepend [ options ] sourcefile ...

bgldepend program reads each sourcefile in sequence and parses it to find the module include and import module directives. bgldepend computes the transitive closure of the import relationship. That is, it is sufficient to provide bgldepend with a single Bigloo file that imports all the project file (e.g. the "main" file.)

Every file that a sourcefile includes, directly or indirectly, is what bgldepend calls a dependency. These dependencies are then written to a makefile in such a way that make(1) will know which object files must be recompiled when a dependency has changed.

By default, bgldepend writes its output on the standard output device. If bgldepend is provided with a -o makefile option, it will update the makefile file. That is, it will search the makefile for the line:


# bgldepend start (don't edit)

and


# bgldepend stop

Dependencies will be written in between these two lines.

Is an file implementing a module. Afile reads that file to discover the name of the implemented module.
Add path to the directory list read for searching Bigloo source files.
Exclude path from the directory list read for searching Bigloo source files.
Adds suf to the bmake source file suffixes list. Default suffixes are "scm", "sch" and "bgl".
Verbose mode
The name of the makefile file to be updated

Normally, bgldepend will be used in a makefile target so that typing ``make bgldepend'' will bring the dependencies up to date for the makefile. For example,


MAIN=foo.scm


SRCS = $(MAIN) bar.scm gee.scm


bgldepend:


bgldepend -o Makefile $(MAIN)

bigloo(1), bglafile(1), bglmake(1), bglpp(1), bglprof(1), bgltags(1), make(1)

Manuel SERRANO, Manuel.Serrano@inria.fr

Aug 15 1998