-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add basic README with build instructions
- Loading branch information
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
## BetterTelnet | ||
|
||
Building BetterTelnet requires *CodeWarrior Gold version 10*, released in 1996 and downloadable from | ||
[Macintosh Garden](http://macintoshgarden.org/apps/codewarrior-10-gold) | ||
Note that this is a totally different version from CodeWarrior Development Studio 10, released in 2005. | ||
|
||
- I personally used Mac OS X 10.4, with CodeWarrior running in the Classic environment. | ||
|
||
- CodeWarrior IDE 1.7 requires that file type codes be set correctly, run the following commands in a terminal: | ||
``` | ||
/Developer/Tools/SetFile -t TEXT source/*/*.c | ||
/Developer/Tools/SetFile -t TEXT source/*/*.h | ||
/Developer/Tools/SetFile -t TEXT source/*/*.pch | ||
/Developer/Tools/SetFile -t TEXT source/*/*/*.c | ||
/Developer/Tools/SetFile -t TEXT source/*/*/*.h | ||
/Developer/Tools/SetFile -t TEXT source/TelnetHelp.bh | ||
/Developer/Tools/SetFile -t TEXT source/*.r | ||
/Developer/Tools/SetFile -t MPLF source/Libraries/ICGluePPC.lib | ||
/Developer/Tools/SetFile -t "OBJ " source/Libraries/ICGlue.o | ||
``` | ||
|
||
- Then, un-MacBinary the telnet.68k.µ.bin and telnet.ppc.µ.bin project files, open in CodeWarrior | ||
IDE 1.7, and Make (cmd-M). |