# Makefile for Mandelbrot computation
# Jim Gochee
# 4/23/92
#

all: test_obj

INCLUDE = ../../../include
LIB     = ../../../lib

CFLAGS = -I$(INCLUDE) -O -I/usr/local/include
TEST_OBJS = test_obj.o $(LIB)/objlib

test_obj: $(TEST_OBJS) 
	$(CC) $(CFLAGS) -o test_obj $(TEST_OBJS)

install:
	-cp test_obj $(SPEDE_BIN)

clean:
	@rm -f *.o
