#
#
# History
# -------
# $Log: Makefile,v $
# Revision 1.1  1998/05/27  17:45:27  dieter
# Initial revision
#
#

PROG= mandel
SRCS= allocator.c mandel.c
OBJS= $(SRCS:.c=.o)

CDEFS= -DOUTPUT_FILE=\"output\"

INCLUDE     	= -I/usr/local/X11R6/include
SYS_LIB     	= -L/usr/local/X11R6/lib -lresolv -lnsl -lsocket -lX11 -lm -lposix4

XSRCS	    	= x.unify.mandel.c
XOBJS        	=  x.unify.mandel.o

myall: all x.unify.mandel

include ../make.common

x.unify.mandel:	$(XOBJS) 
		@echo "Loading $(PROGRAM) ... "
		$(CC) $(INCLUDE) $(XOBJS) $(SYS_LIB) -g -o x.unify.mandel
		@echo "done"

x.unify.mandel.o: $(XSRCS) mandel.h
		$(CC) -c -g $(INCLUDE) -o $(XOBJS) $(XSRCS);

# DO NOT DELETE THIS LINE


