#!/usr/bin/sh # "ihcp_build" # 4 November, 1999 # # # This script will compile the Ikon # Pci Hardcopy driver under HPUX 11.x # # The script will do the following: # 1. Remove any existing copy of mod.o (the driver object) # 2. Compile a 32 or 64 bit version of the driver (depending # on what OS is running) # 3. Leave the compiled object (mod.o) for the install script to load echo # remove old mod.o (if any) if [ -a mod.o ] then rm mod.o fi # compile 32 or 64 bit driver depending on OS KB=` getconf KERNEL_BITS ` make -f ihcp_mod${KB}.mk # done echo echo done echo