#
# Makefile for the ILLUSTRT program.
#
#					Gershon Elber, June 1993
#

include ../makeflag.unx

OBJECTS	= illustrt.o intersct.o spltsort.o

illustrt:	$(OBJECTS)
	$(CC) $(CFLAGS) -o illustrt $(OBJECTS) $(LIBS) $(MORELIBS) -lm

install: illustrt
	mv -f illustrt $(BIN_DIR)

# Dependencies starts here - do not touch, generated automatically.
illustrt.o:	program.h
intersct.o:	program.h
spltsort.o:	program.h
