#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/objs/geoatt
OBJ_PATH = $(DORE_LOC)/dore/obj/$(DORE_OBJTYPE)/objs/geoatt
LIB_PATH = $(DORE_LOC)/dore/lib/$(DORE_OBJTYPE)

OFILES = lokatfrm.o popmat.o pshmat.o rotate.o scale.o shear.o \
       tfmmat.o transl.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

lokatfrm.o : $(OBJ_PATH) $(OBJ_PATH)/lokatfrm.o ;
popmat.o : $(OBJ_PATH) $(OBJ_PATH)/popmat.o ;
pshmat.o : $(OBJ_PATH) $(OBJ_PATH)/pshmat.o ;
rotate.o : $(OBJ_PATH) $(OBJ_PATH)/rotate.o ;
scale.o : $(OBJ_PATH) $(OBJ_PATH)/scale.o ;
shear.o : $(OBJ_PATH) $(OBJ_PATH)/shear.o ;
tfmmat.o : $(OBJ_PATH) $(OBJ_PATH)/tfmmat.o ;
transl.o : $(OBJ_PATH) $(OBJ_PATH)/transl.o ;

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

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

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

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

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

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

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

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


library: 
	(cd $(OBJ_PATH);					\
	$(LDCOM) $(OFILES) -o geoatt.o ; \
	$(ARCOM) $(LIB_PATH)/$(DORE_LIB_NAME) geoatt.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)/lokatfrm.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/dore_develop/private/lokatfrm.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/geoatt.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/matrix.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/lokatfrm.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/internal/geoatt.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/popmat.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/internal/geoatt.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/pshmat.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/dore_develop/private/rotate.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/geoatt.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/matrix.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/system.h
$(OBJ_PATH)/rotate.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/dore_develop/private/scale.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/geoatt.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/matrix.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/scale.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/dore_develop/private/shear.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/geoatt.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/matrix.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/shear.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/dore_develop/private/tfmmat.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/geoatt.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/matrix.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/tfmmat.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/dore_develop/private/transl.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/geoatt.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/matrix.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/transl.o: ${DORE_LOC}/dore/include/internal/util.h
