scsh-make/examples
..
README
checksums.md5
config.h
main.c
makefile-c.scm
manual.tex
mymath.c
mymath.h
wildio.c
wildio.h

README

Starting make:
==============

In XEmacs open a new buffer to edit this makefile-c.scm. Make sure you
had no active scheme-buffer. This will have the effect that your
current working directory is the one with makefile-c.scm in it. Now
open a new scheme-buffer with 'M-x run-scheme'. You should have passed
(at least) the following arguments to scsh:

	'scsh -lel cml/load.scm -lel concurrency/load.scm'

Now load the packages.scm file into package config:

	> ,config ,load ../packages.scm

Open the structures macros and make in package user:

	> ,open macros make

Load makefile-c.scm:

	> ,load makefile-c.scm

Start make:

	> (make rule-set (list "test"))

This should start a build all, install, and test installation process.
By default, the installation directory will be ../../image.

Have fun.