b2ac237c35
FossilOrigin-Name: 61bec5c3ab74da3be2fa090a346b667bfa03cea534d8b378b9ac3245412bdc72
22 lines
581 B
Text
22 lines
581 B
Text
# Advanced Builds
|
|
|
|
## Custom Image
|
|
|
|
For users of BSD, Linux, macOS, you can customize the image at
|
|
build time.
|
|
|
|
In the top level directory is a `package` directory containing
|
|
a file named `list.forth`. You can add files to compile into
|
|
your system by adding them to the `list.forth` and rebuilding.
|
|
|
|
Example:
|
|
|
|
If you have wanted to include the NumbersWithoutPrefixes.forth
|
|
example, add:
|
|
|
|
~~~
|
|
'example/NumbersWithoutPrefixes.forth include
|
|
~~~
|
|
|
|
To the start of the `list.forth` file and then run `make` again.
|
|
The newly built `bin/retro` will now include your additions.
|