
#
# Makefile for the ILLUSTRT poly data display program.
#

include ../makeflag.os2

OBJS	= illustrt.o intersct.o spltsort.o

illustrt.exe: $(OBJS)
	$(CC) $(CFLAGS) $(OBJS) -o illustrt $(LIBS)
	$(STRIP) illustrt
	$(BIND) illustrt $(BINDOPT)
	$(RM) illustrt

install: illustrt.exe
	$(CP) -f illustrt.exe $(BIN_DIR)
	$(RM) illustrt.exe

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