M E N U
Content
Introduction
Release Notes
Features
FAQs
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Reference Manual
Legal
Feedback
|
Select the platform to install under:
Windows 95/NT
Linux/Unix
Use the following instructions to install iMake on Windows 95/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:
- Define JAVA_HOME
set JAVA_HOME=path
Normally path is c:\java
- Modify JAVA_EXE, as needed
set JAVA_EXE=%JAVA_HOME%\bin\java.exe
- Define CLASSPATH
set CLASSPATH=path;%CLASSPATH%
Normally path is c:\imake\classes
- Define PATH
set PATH=path;%PATH%
Normally path is c:\imake\bin
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
makemk
- Define environmental variables in user's login script.
Using /imake/install/linux/home/mk.sh as a template:
- Define JAVA_EXE, as needed
export JAVA_EXE="${JAVA_HOME}/bin/java"
- Define CLASSPATH
export CLASSPATH="./:path:${CLASSPATH}"
Normally path is /imake/classes
- Update PATH
export PATH="./:path:${PATH}"
Normally path is /imake/bin
|