#/****************************************************************************
# * Imakefile for P3D
# * Author Joel Welling and Chris Nuuja
# * Copyright 1989, Pittsburgh Supercomputing Center, Carnegie Mellon University
# *
# * Permission use, copy, and modify this software and its documentation
# * without fee for personal use or use within your organization is hereby
# * granted, provided that the above copyright notice is preserved in all
# * copies and that that copyright and this permission notice appear in
# * supporting documentation.  Permission to redistribute this software to
# * other organizations or individuals is not granted;  that must be
# * negotiated with the PSC.  Neither the PSC nor Carnegie Mellon
# * University make any representations about the suitability of this
# * software for any purpose.  It is provided "as is" without express or
# * implied warranty.
# *****************************************************************************/
# Installer should not have to change anything in this file
#---------------------------------------------------------------------+
SUBIMAKES= drawp3d movietop3d marching_cubes pdbmodel flyby 

# The standard Sun C compiler can't handle prototypes, so avoid drawp3d
# and marching_cubes (which uses it) on that platform.
#ifdef sun
SUBMAKES= movietop3d pdbmodel flyby 
#else
SUBMAKES= drawp3d movietop3d marching_cubes pdbmodel flyby 
#endif

all:: submakes
