CFLAGS	= -s -O
LIBS	= -L/usr/X11/lib -lXaw -lXmu -lXext -lXt -lX11 -lXbsd -f
DESTDIR	= /usr/X11/bin
OBJS	= julia.o main.o mandel.o writegif.o

all:	xmandel

xmandel:	$(OBJS)
	$(CC) $(CFLAGS) -o $(DESTDIR)/xmandel $(OBJS) $(LIBS)
