Select the platform to install under:
Windows 9x/NT
Linux/Unix
Use the following instructions to install iMake on Windows 9x/NT.
- Install Java JDK 1.1.x
Follow JavaSoft's instructions for installing Java JDK 1.1.x.
- Unzip downloaded file(s)
Follow 3rd Party instructions for extracting files from a zip file using folder names.
Normally extract to c:\
- Define environmental variables in c:\autoexec.bat file.
Using c:\imake\install\win32\vars.bat as a template:
- Modify JAVA_EXE, as needed
set JAVA_EXE=path\bin\java.exe
Normally path is the base directory where Java was installed.
- Define CLASSPATH
set CLASSPATH=c:\imake\classes;%CLASSPATH%
- Define PATH
set PATH=c:\imake\bin\win32;%PATH%
- Restart the computer.
top of page
Use the following instructions to install iMake on Linux/Unix.
- Install Java JDK 1.1.x
Follow JavaSoft's instructions for installing Java JDK 1.1.x.
- Login on account where iMake will be installed.
- Unzip downloaded file(s).
gzip -d filename
- Untar resultant file(s).
tar -xvpf filename
- If not in root directory, move imake to root directory.
mv imake /
- Make executables, as needed
cd /imake/bin/linux
makemk
- Define environmental variables in user's login script.
Using /imake/install/linux/mk.sh as a template:
- Define JAVA_EXE, as needed
set JAVA_EXE=path/bin/java
Normally path is the base directory where Java was installed.
- Define CLASSPATH
export CLASSPATH="/imake/classes:${CLASSPATH}"
- Update PATH
export PATH="/imake/bin/linux:${PATH}"
- Logout and log back in.
|