#ident "%W% %G%"

# Copyright (C) 1994 Kubota Graphics Corp.
# 
# Permission to use, copy, modify, and distribute this material for
# any purpose and without fee is hereby granted, provided that the
# above copyright notice and this permission notice appear in all
# copies, and that the name of Kubota Graphics not be used in
# advertising or publicity pertaining to this material.  Kubota
# Graphics Corporation MAKES NO REPRESENTATIONS ABOUT THE ACCURACY
# OR SUITABILITY OF THIS MATERIAL FOR ANY PURPOSE.  IT IS PROVIDED
# "AS IS", WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
# PURPOSE AND KUBOTA GRAPHICS CORPORATION DISCLAIMS ALL WARRANTIES,
# EXPRESS OR IMPLIED.

SHELL = /bin/sh
CCCOM = $(CC) $(CFLAGS) -DERRCHK -I${DORE_LOC}/dore/include -I${ROOT}/usr/include
LDCOM = $(LD) $(LDFLAGS)
ARCOM = $(AR) $(ARFLAGS)
SRC_PATH = $(DORE_LOC)/dore/src/render_config/glbrnd/rayint
OBJ_PATH = $(DORE_LOC)/dore/obj/$(DORE_OBJTYPE)/render_config/glbrnd/rayint
LIB_PATH = $(DORE_LOC)/dore/lib/$(DORE_OBJTYPE)

OFILES = box.o ini.o ray.o statistics.o 

compile: $(OFILES)

$(OBJ_PATH):
	@sIFS=$$IFS ; IFS="/" ; set $(OBJ_PATH) ; IFS=$$sIFS ; \
	path="" ; \
	for file do \
	   path="$$path/$$file" ; \
	   if [ ! -d $$path ]; then \
	      echo "New Directory $$path" ; \
	      mkdir -p $$path ; \
	   fi ; \
	done

box.o : $(OBJ_PATH) $(OBJ_PATH)/box.o ;
ini.o : $(OBJ_PATH) $(OBJ_PATH)/ini.o ;
ray.o : $(OBJ_PATH) $(OBJ_PATH)/ray.o ;
statistics.o : $(OBJ_PATH) $(OBJ_PATH)/statistics.o ;

$(OBJ_PATH)/box.o : box.c
	$(CCCOM) -c box.c
	mv -f box.o $(OBJ_PATH)/box.o

$(OBJ_PATH)/ini.o : ini.c
	$(CCCOM) -c ini.c
	mv -f ini.o $(OBJ_PATH)/ini.o

$(OBJ_PATH)/ray.o : ray.c
	$(CCCOM) -c ray.c
	mv -f ray.o $(OBJ_PATH)/ray.o

$(OBJ_PATH)/statistics.o : statistics.c
	$(CCCOM) -c statistics.c
	mv -f statistics.o $(OBJ_PATH)/statistics.o


library: 
	(cd $(OBJ_PATH);					\
	$(LDCOM) $(OFILES) -o rayint.o ; \
	$(ARCOM) $(LIB_PATH)/$(DORE_LIB_NAME) rayint.o )

object: 
	(cd $(OBJ_PATH);					\
	$(LDCOM) $(LIB_PATH)/dore.sub.o $(OFILES) -o $(LIB_PATH)/dore.t.o)
	mv $(LIB_PATH)/dore.t.o $(LIB_PATH)/dore.sub.o

clean: 
	/bin/rm -f $(OBJ_PATH)/*.o

######################################################################

$(OBJ_PATH)/box.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/box.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/box.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/box.o: ${DORE_LOC}/dore/include/dore_develop/private/device.h
$(OBJ_PATH)/box.o: ${DORE_LOC}/dore/include/dore_develop/private/rayintsph.h
$(OBJ_PATH)/box.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/box.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/box.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/box.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/box.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/box.o: ../glbrnd.h
$(OBJ_PATH)/box.o: rayint.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/dore_develop/private/device.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/dore_develop/private/rayintsph.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/internal/matrix.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/ini.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/ini.o: ../glbrnd.h
$(OBJ_PATH)/ini.o: rayint.h
$(OBJ_PATH)/ray.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/ray.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/ray.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/ray.o: ${DORE_LOC}/dore/include/dore_develop/private/device.h
$(OBJ_PATH)/ray.o: ${DORE_LOC}/dore/include/dore_develop/private/rayintsph.h
$(OBJ_PATH)/ray.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/ray.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/ray.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/ray.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/ray.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/ray.o: ../glbrnd.h
$(OBJ_PATH)/ray.o: rayint.h
$(OBJ_PATH)/statistics.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/statistics.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/statistics.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/statistics.o: ${DORE_LOC}/dore/include/dore_develop/private/device.h
$(OBJ_PATH)/statistics.o: ${DORE_LOC}/dore/include/dore_develop/private/rayintsph.h
$(OBJ_PATH)/statistics.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/statistics.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/statistics.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/statistics.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/statistics.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/statistics.o: ../glbrnd.h
$(OBJ_PATH)/statistics.o: rayint.h
