Hi Robert,

On Sun, 19 Dec 2021 01:37:30 -0330 foggy <[email protected]> wrote:

> I'm trying to figure out how to create the egg definition for a
> program with multiple compilation units. Could someone link me to an
> example of such a definition, or somehow help me with this?
>
> I'm currently just using `csc -o PROGRAM src/*.scm` in a makefile, and
> would like to replace this with an egg definition.

One way to achieve that is having, say, the-program.scm including (with
`include') src/part1.scm, src/part2.scm (and so on).

That would be something like

  (program the-program
    (source-dependencies "src/part1.scm" "src/part2.scm"))

in the .egg file.

All the best.
Mario
-- 
http://parenteses.org/mario

Reply via email to