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

OFILES = cammat.o glbmaxobj.o glbmaxsub.o glbraylvl.o intdsp.o \
       lgtatn.o lgtclr.o lgtint.o lgtspdang.o lgtspdexp.o lgttyp.o \
       parallel.o perspectv.o projection.o smpadapt.o smpadaptsw.o \
       smpfilter.o smpjitter.o smpjittswi.o smpsuper.o smpsupersw.o \
       stereo.o stereoswi.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

cammat.o : $(OBJ_PATH) $(OBJ_PATH)/cammat.o ;
glbmaxobj.o : $(OBJ_PATH) $(OBJ_PATH)/glbmaxobj.o ;
glbmaxsub.o : $(OBJ_PATH) $(OBJ_PATH)/glbmaxsub.o ;
glbraylvl.o : $(OBJ_PATH) $(OBJ_PATH)/glbraylvl.o ;
intdsp.o : $(OBJ_PATH) $(OBJ_PATH)/intdsp.o ;
lgtatn.o : $(OBJ_PATH) $(OBJ_PATH)/lgtatn.o ;
lgtclr.o : $(OBJ_PATH) $(OBJ_PATH)/lgtclr.o ;
lgtint.o : $(OBJ_PATH) $(OBJ_PATH)/lgtint.o ;
lgtspdang.o : $(OBJ_PATH) $(OBJ_PATH)/lgtspdang.o ;
lgtspdexp.o : $(OBJ_PATH) $(OBJ_PATH)/lgtspdexp.o ;
lgttyp.o : $(OBJ_PATH) $(OBJ_PATH)/lgttyp.o ;
parallel.o : $(OBJ_PATH) $(OBJ_PATH)/parallel.o ;
perspectv.o : $(OBJ_PATH) $(OBJ_PATH)/perspectv.o ;
projection.o : $(OBJ_PATH) $(OBJ_PATH)/projection.o ;
smpadapt.o : $(OBJ_PATH) $(OBJ_PATH)/smpadapt.o ;
smpadaptsw.o : $(OBJ_PATH) $(OBJ_PATH)/smpadaptsw.o ;
smpfilter.o : $(OBJ_PATH) $(OBJ_PATH)/smpfilter.o ;
smpjitter.o : $(OBJ_PATH) $(OBJ_PATH)/smpjitter.o ;
smpjittswi.o : $(OBJ_PATH) $(OBJ_PATH)/smpjittswi.o ;
smpsuper.o : $(OBJ_PATH) $(OBJ_PATH)/smpsuper.o ;
smpsupersw.o : $(OBJ_PATH) $(OBJ_PATH)/smpsupersw.o ;
stereo.o : $(OBJ_PATH) $(OBJ_PATH)/stereo.o ;
stereoswi.o : $(OBJ_PATH) $(OBJ_PATH)/stereoswi.o ;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


library: 
	(cd $(OBJ_PATH);					\
	$(LDCOM) $(OFILES) -o studioatt.o ; \
	$(ARCOM) $(LIB_PATH)/$(DORE_LIB_NAME) studioatt.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)/cammat.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/dore_develop/private/cammat.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/matrix.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/cammat.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/glbmaxobj.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/glbmaxsub.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/glbraylvl.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/intdsp.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/lgtatn.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/lgtclr.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/lgtint.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/internal/system.h
$(OBJ_PATH)/lgtspdang.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/lgtspdexp.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/lgttyp.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/dore_develop/private/parmat.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/matrix.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/parallel.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/dore_develop/private/permat.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/matrix.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/system.h
$(OBJ_PATH)/perspectv.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/dore_develop/private/prjmat.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/list.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/matrix.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/projection.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/smpadapt.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/smpadaptsw.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/smpfilter.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/smpjitter.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/smpjittswi.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/smpsuper.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/smpsupersw.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/stereo.o: ${DORE_LOC}/dore/include/internal/util.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/dore.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/dore_develop/develop.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/dore_develop/error.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/internal/bitfield.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/internal/dogen.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/internal/error.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/internal/exeset.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/internal/filters.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/internal/font.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/internal/glbatt.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/internal/modclpvol.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/internal/studio.h
$(OBJ_PATH)/stereoswi.o: ${DORE_LOC}/dore/include/internal/util.h
