#
# This is the make file for the illustrt program using DJGCC on the IBMPC.
#
#					Gershon Elber, June 1993
#

!include "..\makeflag.djg"

OBJS	= illustrt.o intersct.o spltsort.o

.c.o:
	$(CC) $(CFLAGS) -I. -I$(INC_DIR) -c $<

.cc.o:
	$(CC) $(CFLAGS) -I. -I$(INC_DIR) -c $<

illustrt.exe:	$(OBJS)
	$(CC) $(CFLAGS) -o illustrt @&&!
$(OBJS) $(LIBS) $(MORELIBS) -lm
!
#	strip illustrt
#	aout2exe illustrt

install: illustrt.exe
	copy illustrt.exe $(BIN_DIR_DOS)
	del  illustrt.exe

# Dependencies starts here - do not touch, generated automatically.
