#==============================================================================
# PATCH OPENSTEP 4.1 & 4.2-prerelease broken makefile system -- ES
#
# Under 4.1 & 4.2-prerelease OFILES does not include any of the C++ object 
# files, so we manually add them to OTHER_OFILES.  Under 4.2-final, OFILES 
# *does* refer to them, so we must remove the duplicates lest the linker
# complains about linking the same files twice.  This is done with the $(sort)
# function which removes duplicates as a side-effect.  See Makefile.preamble
# for the other half of this patch.
#==============================================================================

OFILES := $(sort $(OFILES))
