#
#  Imakefile for Xmandel
#   project for "Chaos In Science", History of Conciousness board,
#   UC Santa Cruz, Summer Session I, 1993 
#
#   You need to set "INCLUDES" to be equal to where the top level of your
#    system X includes are, if it is not /usr/include/X11
#

LOCAL_LIBRARIES = $(XAWLIB) $(XTOOLLIB) $(XMULIB) $(XLIB)  -lm
INCLUDES = -I/usr/openwin/include/X11
OBJS = main.o attributes.o widgets.o equasion.o colors.o complex.o
SRCS = main.c attributes.c widgets.c equasion.c colors.c complex.c

/* DEFINE FLAGS...
 *
 *  (note: RELATIVEMAGNITUDE and MANDELONLY are only usefull when using
 *	xmandel in "Real" mode. I assume that if you are in "fast" mode,
 *	you want as much speed as possible.)
 *
 *	-DRELATIVEMAGNITUDE
 *		IFF you do not have FULLMAGNITUDE defined, you can opt to have
 *		the funky "relative escape radius" function.
 *		This means color is dependant on distance from center of
 *		view, not (0,0)

 *	-DMANDELONLY
 *		If you KNOW you only want to view the "true"
 *		Mandelbrot equasion, compile with this define,
 *		for better speed.
 *
 *	-DDEBUG for random debugging output spew
 */

# DEFINES = -DRELATIVEMAGNITUDE -DMANDELONLY

/*CDEBUGFLAGS = -g -ansi -pedantic -Wall*/
ComplexProgramTarget(xmandel)

