#
# Makefile for the IRENDER scan converter.
#

include ..\makeflag.wnt

MORE_FLAGS = -DUSE_PROTOTYPES -DUSE_STDLIB_H # For the rle include.

OBJS	= main.obj config.obj parser.obj map.obj polyline.obj \
	  lights.obj rle.obj ppm.obj image.obj bucket.obj shader.obj \
	  alias.obj color.obj interpol.obj texture.obj shadow.obj 

irender.exe:	$(OBJS)
	$(IRITCONLINK) -out:irender.exe $(OBJS) $(LIBS) $(W32CONLIBS)

install: irender.exe
	copy irender.exe $(BIN_DIR)
	del irender.exe
	copy irender.cfg $(BIN_DIR)

# DO NOT DELETE THIS LINE -- make depend depends on it.

