Select the platform to install under:
Windows 9x/Me/NT/2000/2003/XP
Linux/Solaris/AIX/HP-UX/Unix
Use the following instructions to install iMake on Windows 9x/Me/NT/2000/2003/XP.
- Install Java version 1.1.x or later.
- Extract setup_imake.jar file.
c:
cd \
jar -xvf path\setup_imake.jar
path
|
the directory containing setup_imake.jar.
|
- Define environment 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
path the base directory where Java was installed.
- Define CLASSPATH
set CLASSPATH=path\classes;%CLASSPATH%
path the base directory where iMake was installed, normally
c:\imake.
- Define PATH
set PATH=path\bin\win32;%PATH%
path the base directory where iMake was installed, normally
c:\imake.
- Restart the computer.
top of page
Use the following instructions to install iMake on
Linux/Solaris/AIX/HP-UX/Unix.
- Install Java version 1.1.x or later.
- Login on account where iMake will be installed.
- Extract setup_imake.jar file.
cd /
jar -xvf path/setup_imake.jar
path
|
the directory containing setup_imake.jar.
|
- If not in root directory, move imake to root directory.
mv imake /
- Make executables, as needed
cd /imake/bin/linux
chmod u+x,g+x makemk
./makemk
- Define environment 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
path the base directory where Java was installed.
- Define CLASSPATH
export CLASSPATH="path/classes:${CLASSPATH}"
path the base directory where iMake was installed, normally
/imake.
- Update PATH
export PATH="path/bin/linux:${PATH}"
path the base directory where iMake was installed, normally
/imake.
- Logout and log back in.
|