/**/#
/**/# Imakefile for ./Src/Display - part of the PIX X-Tank distribution
/**/#
/**/# $Author: lidl $
/**/# $Id: Imakefile,v 1.1.1.1 1995/02/01 00:25:48 lidl Exp $
/**/#

#include "../../Imakefile.Config"

           SRCS = XMultiSync.c graphics.c objects.c three-d.c
           OBJS = XMultiSync.o graphics.o objects.o three-d.o

/**/# Important things that we might want to find

 EXTRA_INCLUDES = -I. -I../Include

#ifdef DebugDisplay && ProfileDisplay
DebuggedAndProfiledLibraryObjectRule()
#else
# if DebugDisplay
DebuggedLibraryObjectRule()
# else
#  if ProfileDisplay
ProfiledLibraryObjectRule()
#  else
NormalLibraryObjectRule()
#  endif
# endif
#endif

NormalLibraryTarget(xtankdisplay,$(OBJS))
InstallLibrary(xtankdisplay,$(XTANK_DIR)/Lib)
DependTarget()

#if ProfileDisplay
ProfiledLibraryTarget(xtankdisplay,$(OBJS))
InstallLibrary(xtankdisplay_p,$(XTANK_DIR)/Lib)
#endif

#ifdef DebugDisplay
DebuggedLibraryTarget(xtankdisplay,$(OBJS))
#endif
