#
# Makefile for the example program mandel (mandelbrot set)
#
# THIS MAKEFILE IS FOR GNAT!!!
#
# 4.10.97 H.-F. Vogt
#

include ../../Local.conf

all: mandel

mandel: mandel.adb mandel_global.ads mandel_global.adb fallback.ads
	$(ADA_MAKE) $(ADA_MAKE_FLAGS) -I../../lib -I.. $@ -largs $(ADA_LINK_FLAGS) $(XLIB_DIR) $(XM_LIBS)

clean:
	$(RM) *.ali *.o

distclean:
	$(RM) *.ali *.o mandel
