M E N U
Content
Introduction
Release Notes
Requirements
Installation
Change Log
Future Plans
Knowledge Base
Referance 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.x
Follow JavaSoft's instructions for installing Java JDK 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\imake.zip
- 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.x
Follow JavaSoft's instructions for installing Java JDK 1.x.
- login as root.
- 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 /
- Define environmental variables in /etc/profile.d/mk.sh script.
Using /imake/install/linux/etc/profile.d/mk.sh as a template:
- Define JAVA_EXE, as needed
set JAVA_EXE=$JAVA_HOME/bin/java
- Define CLASSPATH
export CLASSPATH="./:path:${CLASSPATH}"
Normally path is
/imake/classes/imake.zip
- Update PATH
export PATH="./:path:${PATH}"
Normally path is /imake/bin
- copy /imake/install/linux/etc/profile.d/mk.sh
to /etc/profile.d/mk.sh
cp /imake/install/linux/etc/profile.d/mk.sh /etc/profile.d/mk.sh
- Define environmental variables in /etc/profile.d/mk.csh script.
Using /imake/install/linux/etc/profile.d/mk.csh as a template:
- Define JAVA_EXE, as needed
setenv JAVA_EXE $JAVA_HOME/bin/java
- Define CLASSPATH
setenv CLASSPATH "./:path:${CLASSPATH}"
Normally path is
/imake/classes/imake.zip
- Update PATH
setenv PATH "./:path:${PATH}"
Normally path is /imake/bin
- copy /imake/install/linux/etc/profile.d/mk.csh
to /etc/profile.d/mk.csh
cp /imake/install/linux/etc/profile.d/mk.csh /etc/profile.d/mk.csh
- Update /imake/bin/mk.exe, as needed
- Update JAVA_HOME, as needed
set JAVA_HOME=path
Normally path is /usr/lib/jdk-1.1.3
- Update JAVA_EXE, as needed
export JAVA_EXE=$JAVA_HOME/bin/java
- Make executables, as needed
cd /imake/bin
makemk
|