mirror of
https://github.com/byteworksinc/MakeLib.git
synced 2025-01-20 12:31:13 +00:00
MakeLib 2.0 source from the Opus ][ CD
This commit is contained in:
commit
f67e8e2caa
11
LICENSE
Normal file
11
LICENSE
Normal file
@ -0,0 +1,11 @@
|
||||
MakeLib is released by the copyright holder under the terms of the original copyright.
|
||||
|
||||
The Byte Works, Inc. grants you the right to use this source code privately, fork it, and change it.
|
||||
|
||||
You may not redistribute the code in any form other than submission to this repository without the written permission of the copyright holder.
|
||||
|
||||
The copyright holder decided to do things this way for two reasons:
|
||||
|
||||
1. Reserve commercial distribution rights.
|
||||
|
||||
2. Ensure that any contributions and updates are available from a centralized source (this GitHib repository, for now).
|
1
MakeLib.cc
Executable file
1
MakeLib.cc
Executable file
File diff suppressed because one or more lines are too long
46
README.md
Normal file
46
README.md
Normal file
@ -0,0 +1,46 @@
|
||||
# MakeLib
|
||||
A utility designed for use with the ORCA development environment for the Apple IIGS, MakeLib creates Apple IIGS formal libraries.
|
||||
|
||||
__Binary downloads for the latest MakeLib release are on the [releases page][releases].__
|
||||
|
||||
[releases]: https://github.com/byteworksinc/MakeLib/releases
|
||||
|
||||
If you would like to make changes to this utility and distribute them to others, feel free to submit them here. If the changes apply to compilation on and for an Apple IIGS, they will generally be approved for distribution on the master branch.
|
||||
|
||||
The general conditions that must be met before a change is released on master are:
|
||||
|
||||
1. The modified utility must compile under the currently released version of ORCA/Cl.
|
||||
|
||||
Contact support@byteworks.us if you need contributor access.
|
||||
|
||||
A complete distribution of the ORCA languages, including installers and documentation, is available from the Juiced GS store at https://juiced.gs/store/category/software/. It is distributed as part of the Opus ][ package.
|
||||
|
||||
## Line Endings and File Types
|
||||
|
||||
The text and source files in this repository originally used CR line endings, as usual for Apple II text files, but they have been converted to use LF line endings because that is the format expected by Git. If you wish to move them to a real or emulated Apple II and build them there, you will need to convert them back to CR line endings.
|
||||
|
||||
If you wish, you can configure Git to perform line ending conversions as files are checked in and out of the Git repository. With this configuration, the files in your local working copy will contain CR line endings suitable for use on an Apple II. To set this up, perform the following steps in your local copy of the Git repository (these should be done when your working copy has no uncommitted changes):
|
||||
|
||||
1. Add the following lines at the end of the `.git/config` file:
|
||||
```
|
||||
[filter "crtext"]
|
||||
clean = LC_CTYPE=C tr \\\\r \\\\n
|
||||
smudge = LC_CTYPE=C tr \\\\n \\\\r
|
||||
```
|
||||
|
||||
2. Add the following line to the `.git/info/attributes` file, creating it if necessary:
|
||||
```
|
||||
* filter=crtext
|
||||
```
|
||||
|
||||
3. Run the following commands to convert the existing files in your working copy:
|
||||
```
|
||||
rm .git/index
|
||||
git checkout HEAD -- .
|
||||
```
|
||||
|
||||
Alternatively, you can keep the LF line endings in your working copy of the Git repository, but convert them when you copy the files to an Apple II. There are various tools to do this. One option is `udl`, which is [available][udl] both as a IIGS shell utility and as C code that can be built and used on modern systems.
|
||||
|
||||
[udl]: http://ftp.gno.org/pub/apple2/gs.specific/gno/file.convert/udl.114.shk
|
||||
|
||||
In addition to converting the line endings, you will also have to set the files to the appropriate file types before building ORCA/C on a IIGS. The included `settypes` script (for use under the ORCA shell) does this for the sources to the ORCA/C compiler itself, although it does not currently cover the test cases and headers.
|
Loading…
x
Reference in New Issue
Block a user