#
# Below are instructsion for Escalade objects.

# For Red Hat systems.
# Red Hat builds starting with RH7.0 support building the following targets
# while being booted from a UP kernel. (up, bot, smp, ent, all and clean)
# Target all will build (UP, BOOT, SMP and Enterprise objects)
# Red Hat 6.2 and older require you to boot to the kernel you want to
# build against. This is the same as using Makefile.oth to build other
# versions of objects.
######################
## UP object.
# Type make -f Makefile.rh

## SMP object.
# Type make smp -f Makefile.rh

## Enterprise object
# Type make ent -f Makefile.rh

## BOOT object.
# Type make bot -f Makefile.rh

## Make all targets.
# Type make all -f Makefile.rh

## Clean up files
# Type make clean -f Makefile.rh

# For other distributions use Makefile.oth
# Only targets all, smp and clean are available for other distributions.
##########################################

# Type make -f Makefile.oth
# Type make smp -f Makefile.oth
# Type make clean -f Makefile.oth to clean up files

# Typing the above command will build an object against the kernel
# that /usr/src/linux is linked to with kernel version information
# what that matches /usr/src/linux/include/linux/version.h.
# (i.e. if /usr/src/linux/linux/include/linux/version.h says
# UTS_RELEASE "2.4.7-10smp" the object you just built will only 
# work with kernel 2.4.7-10smp. 
