#
# Makefile for it++/src
#
# Makefile,v 1.48 2004/10/27 11:18:48 tonyottosson Exp
#
LIB_BASE = libit++
LIB_PATH = ../lib/
TARGETS = $(LIBTARGETS)
SRCS_BASE = \
base/itassert.cpp base/timing.cpp base/binfile.cpp \
base/itfile.cpp base/parser.cpp base/itpp_version.cpp \
base/vec.cpp base/mat.cpp base/svec.cpp base/smat.cpp \
base/eigen.cpp base/binary.cpp base/bessel.cpp \
base/converters.cpp base/scalfunc.cpp base/elmatfunc.cpp base/matfunc.cpp \
base/specmat.cpp base/operators.cpp base/fastmath.cpp \
base/cholesky.cpp base/lu.cpp base/qr.cpp base/det.cpp base/inv.cpp base/ls_solve.cpp \
base/svd.cpp base/filter.cpp base/sigfun.cpp base/source.cpp base/transforms.cpp \
base/random.cpp base/plot_pdf.cpp base/fix_base.cpp base/fix.cpp base/fixed.cpp \
base/cfix.cpp base/cfixed.cpp base/fix_factory.cpp base/fix_operators.cpp \
base/fix_functions.cpp base/fastica.cpp base/stat.cpp base/integration.cpp
SRCS_COMM = \
comm/bch.cpp comm/channel.cpp comm/commfunc.cpp comm/convcode.cpp \
comm/punct_convcode.cpp \
comm/galois.cpp comm/hammcode.cpp comm/interleave.cpp comm/modulator.cpp \
comm/reedsolomon.cpp comm/spread.cpp comm/egolay.cpp comm/error_counters.cpp \
comm/sequence.cpp comm/ofdm.cpp comm/rec_syst_conv_code.cpp comm/turbo.cpp \
comm/pulse_shape.cpp comm/crc.cpp
SRCS_SRCCODE = \
srccode/audiofile.cpp srccode/pnm.cpp srccode/lpcfunc.cpp srccode/vq.cpp \
srccode/vqtrain.cpp srccode/gmm.cpp
SRCS_BASE += \
base/bessel/airy.cpp base/bessel/i0.cpp base/bessel/i1.cpp base/bessel/iv.cpp \
base/bessel/jv.cpp base/bessel/kn.cpp base/bessel/k0.cpp base/bessel/k1.cpp \
base/bessel/polevl.cpp base/bessel/chbevl.cpp base/bessel/hyperg.cpp \
base/bessel/struve.cpp
SRCS = $(SRCS_BASE) $(SRCS_COMM) $(SRCS_SRCCODE)
OBJS := $(SRCS:.cpp=.o)
DEBUG_OBJS := $(SRCS:.cpp=_debug.o)
PROF_OBJS := $(SRCS:.cpp=_prof.o)
PIC_OBJS := $(SRCS:.cpp=_pic.o)
#INCLUDE=-I../include -I../src/base/fftw
INCLUDE=-I../include
include ../MakeConfig
JUNKFILES += $(OBJS) $(DEBUG_OBJS) $(PROF_OBJS) $(SHARED_OBJS)
ifeq ($(HAVE_INTEL_MKL),1)
INCLUDE += -I$(INTEL_MKL_PATH)/INCLUDE
endif
ifeq ($(HAVE_ATLAS), 1)
INCLUDE += -I$(ATLAS_PATH)
endif
$(OPT_LIB): $(OBJS)
@echo Creating $@
@-rm -f $(OPT_LIB)
@$(AR) -qc $(OPT_LIB) $(OBJS)
@ranlib $(OPT_LIB)
$(DEBUG_LIB): $(DEBUG_OBJS)
@echo Creating $@
@-rm -f $(DEBUG_LIB)
@$(AR) -qc $(DEBUG_LIB) $(DEBUG_OBJS)
@ranlib $(DEBUG_LIB)
$(PROF_LIB): $(PROF_OBJS)
@echo Creating $@
@-rm -f $(PROF_LIB)
@$(AR) -qc $(PROF_LIB) $(PROF_OBJS)
@ranlib $(PROF_LIB)
$(SHARED_LIB): $(PIC_OBJS)
@echo Creating $@
@gcc -shared $(PIC_OBJS) -o $(LIB_BASE).so
@mv -f $(LIB_BASE).so $(SHARED_LIB)
../include/itconfig_auto.h: ../configure
@echo
@echo "***************************************"
@echo "*** You need to re-run configure!!! ***"
@echo "***************************************"
@echo
@exit 1
# DO NOT DELETE. GENERATED BY "make depend"
base/itassert.o: ../include/base/itassert.h ../include/itconfig.h
base/timing.o: ../include/base/timing.h
base/binfile.o: ../include/base/binfile.h ../include/itconfig.h
base/binfile.o: ../include/base/binary.h ../include/base/itassert.h
base/binfile.o: ../include/base/machdep.h
base/itfile.o: ../include/base/itfile.h ../include/base/binary.h
base/itfile.o: ../include/base/itassert.h ../include/itconfig.h
base/itfile.o: ../include/base/mat.h ../include/base/scalfunc.h
base/itfile.o: ../include/base/factory.h ../include/base/vec.h
base/itfile.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/itfile.o: ../include/base/array.h ../include/base/binfile.h
base/itfile.o: ../include/base/machdep.h
base/parser.o: ../include/base/parser.h ../include/base/vec.h
base/parser.o: ../include/itconfig.h ../include/base/binary.h
base/parser.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/parser.o: ../include/base/factory.h ../src/base/copy_vector.h
base/parser.o: ../include/base/cblas.h ../include/base/mat.h
base/parser.o: ../include/base/array.h
base/itpp_version.o: ../include/base/itpp_version.h ../include/itconfig.h
base/vec.o: ../include/base/vec.h ../include/itconfig.h
base/vec.o: ../include/base/binary.h ../include/base/itassert.h
base/vec.o: ../include/base/scalfunc.h ../include/base/factory.h
base/vec.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/vec.o: ../include/base/mat.h
base/mat.o: ../include/base/mat.h ../include/itconfig.h
base/mat.o: ../include/base/itassert.h ../include/base/binary.h
base/mat.o: ../include/base/scalfunc.h ../include/base/factory.h
base/mat.o: ../include/base/vec.h ../src/base/copy_vector.h
base/mat.o: ../include/base/cblas.h
base/svec.o: ../include/base/svec.h ../include/itconfig.h
base/svec.o: ../include/base/vec.h ../include/base/binary.h
base/svec.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/svec.o: ../include/base/factory.h ../src/base/copy_vector.h
base/svec.o: ../include/base/cblas.h ../include/base/mat.h
base/svec.o: ../include/base/matfunc.h ../include/base/converters.h
base/svec.o: ../include/base/specmat.h ../include/base/sort.h
base/svec.o: ../include/base/stat.h
base/smat.o: ../include/base/smat.h ../include/itconfig.h
base/smat.o: ../include/base/svec.h ../include/base/vec.h
base/smat.o: ../include/base/binary.h ../include/base/itassert.h
base/smat.o: ../include/base/scalfunc.h ../include/base/factory.h
base/smat.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/smat.o: ../include/base/mat.h ../include/base/matfunc.h
base/smat.o: ../include/base/converters.h ../include/base/specmat.h
base/smat.o: ../include/base/sort.h ../include/base/stat.h
base/eigen.o: ../include/base/eigen.h ../include/base/vec.h
base/eigen.o: ../include/itconfig.h ../include/base/binary.h
base/eigen.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/eigen.o: ../include/base/factory.h ../src/base/copy_vector.h
base/eigen.o: ../include/base/cblas.h ../include/base/mat.h
base/eigen.o: ../include/base/matfunc.h ../include/base/converters.h
base/eigen.o: ../include/base/specmat.h ../include/base/sort.h
base/eigen.o: ../src/base/lapack.h
base/binary.o: ../include/base/binary.h ../include/base/itassert.h
base/binary.o: ../include/itconfig.h
base/bessel.o: ../include/base/bessel.h ../include/base/vec.h
base/bessel.o: ../include/itconfig.h ../include/base/binary.h
base/bessel.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/bessel.o: ../include/base/factory.h ../src/base/copy_vector.h
base/bessel.o: ../include/base/cblas.h ../include/base/mat.h
base/bessel.o: ../src/base/bessel/bessel_internal.h
base/converters.o: ../include/base/converters.h ../include/base/vec.h
base/converters.o: ../include/itconfig.h ../include/base/binary.h
base/converters.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/converters.o: ../include/base/factory.h ../src/base/copy_vector.h
base/converters.o: ../include/base/cblas.h ../include/base/mat.h
base/converters.o: ../include/base/matfunc.h ../include/base/specmat.h
base/converters.o: ../include/base/sort.h
base/scalfunc.o: ../include/base/itassert.h ../include/itconfig.h
base/scalfunc.o: ../include/base/vec.h ../include/base/binary.h
base/scalfunc.o: ../include/base/scalfunc.h ../include/base/factory.h
base/scalfunc.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/scalfunc.o: ../include/base/mat.h
base/elmatfunc.o: ../include/base/elmatfunc.h ../include/base/vec.h
base/elmatfunc.o: ../include/itconfig.h ../include/base/binary.h
base/elmatfunc.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/elmatfunc.o: ../include/base/factory.h ../src/base/copy_vector.h
base/elmatfunc.o: ../include/base/cblas.h ../include/base/mat.h
base/elmatfunc.o: ../include/base/help_functions.h
base/elmatfunc.o: ../include/base/converters.h
base/matfunc.o: ../include/base/matfunc.h ../include/base/vec.h
base/matfunc.o: ../include/itconfig.h ../include/base/binary.h
base/matfunc.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/matfunc.o: ../include/base/factory.h ../src/base/copy_vector.h
base/matfunc.o: ../include/base/cblas.h ../include/base/mat.h
base/matfunc.o: ../include/base/converters.h ../include/base/specmat.h
base/matfunc.o: ../include/base/sort.h
base/specmat.o: ../include/base/specmat.h ../include/base/vec.h
base/specmat.o: ../include/itconfig.h ../include/base/binary.h
base/specmat.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/specmat.o: ../include/base/factory.h ../src/base/copy_vector.h
base/specmat.o: ../include/base/cblas.h ../include/base/mat.h
base/specmat.o: ../include/base/converters.h ../include/base/elmatfunc.h
base/specmat.o: ../include/base/help_functions.h ../include/base/matfunc.h
base/specmat.o: ../include/base/sort.h ../include/base/stat.h
base/operators.o: ../include/base/operators.h ../include/base/vec.h
base/operators.o: ../include/itconfig.h ../include/base/binary.h
base/operators.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/operators.o: ../include/base/factory.h ../src/base/copy_vector.h
base/operators.o: ../include/base/cblas.h ../include/base/mat.h
base/operators.o: ../include/base/converters.h
base/fastmath.o: ../include/base/binary.h ../include/base/itassert.h
base/fastmath.o: ../include/itconfig.h ../include/base/fastmath.h
base/fastmath.o: ../include/base/vec.h ../include/base/scalfunc.h
base/fastmath.o: ../include/base/factory.h ../src/base/copy_vector.h
base/fastmath.o: ../include/base/cblas.h ../include/base/mat.h
base/cholesky.o: ../include/itconfig.h ../include/base/cholesky.h
base/cholesky.o: ../include/base/vec.h ../include/base/binary.h
base/cholesky.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/cholesky.o: ../include/base/factory.h ../src/base/copy_vector.h
base/cholesky.o: ../include/base/cblas.h ../include/base/mat.h
base/cholesky.o: ../src/base/lapack.h
base/lu.o: ../include/base/lu.h ../include/base/vec.h ../include/itconfig.h
base/lu.o: ../include/base/binary.h ../include/base/itassert.h
base/lu.o: ../include/base/scalfunc.h ../include/base/factory.h
base/lu.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/lu.o: ../include/base/mat.h ../include/base/matfunc.h
base/lu.o: ../include/base/converters.h ../include/base/specmat.h
base/lu.o: ../include/base/sort.h ../src/base/lapack.h
base/qr.o: ../include/base/qr.h ../include/base/vec.h ../include/itconfig.h
base/qr.o: ../include/base/binary.h ../include/base/itassert.h
base/qr.o: ../include/base/scalfunc.h ../include/base/factory.h
base/qr.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/qr.o: ../include/base/mat.h ../include/base/matfunc.h
base/qr.o: ../include/base/converters.h ../include/base/specmat.h
base/qr.o: ../include/base/sort.h ../src/base/lapack.h
base/det.o: ../include/base/vec.h ../include/itconfig.h
base/det.o: ../include/base/binary.h ../include/base/itassert.h
base/det.o: ../include/base/scalfunc.h ../include/base/factory.h
base/det.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/det.o: ../include/base/mat.h ../include/base/lu.h
base/inv.o: ../include/base/inv.h ../include/base/mat.h ../include/itconfig.h
base/inv.o: ../include/base/itassert.h ../include/base/binary.h
base/inv.o: ../include/base/scalfunc.h ../include/base/factory.h
base/inv.o: ../include/base/vec.h ../src/base/copy_vector.h
base/inv.o: ../include/base/cblas.h ../src/base/lapack.h
base/ls_solve.o: ../include/itconfig.h ../include/base/ls_solve.h
base/ls_solve.o: ../include/base/vec.h ../include/base/binary.h
base/ls_solve.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/ls_solve.o: ../include/base/factory.h ../src/base/copy_vector.h
base/ls_solve.o: ../include/base/cblas.h ../include/base/mat.h
base/ls_solve.o: ../include/base/cholesky.h ../src/base/lapack.h
base/svd.o: ../include/base/svd.h ../include/base/vec.h ../include/itconfig.h
base/svd.o: ../include/base/binary.h ../include/base/itassert.h
base/svd.o: ../include/base/scalfunc.h ../include/base/factory.h
base/svd.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/svd.o: ../include/base/mat.h ../include/base/matfunc.h
base/svd.o: ../include/base/converters.h ../include/base/specmat.h
base/svd.o: ../include/base/sort.h ../include/base/elmatfunc.h
base/svd.o: ../include/base/help_functions.h ../src/base/lapack.h
base/filter.o: ../include/base/filter.h ../include/itconfig.h
base/filter.o: ../include/base/vec.h ../include/base/binary.h
base/filter.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/filter.o: ../include/base/factory.h ../src/base/copy_vector.h
base/filter.o: ../include/base/cblas.h ../include/base/mat.h
base/filter.o: ../include/base/matfunc.h ../include/base/converters.h
base/filter.o: ../include/base/specmat.h ../include/base/sort.h
base/sigfun.o: ../include/base/elmatfunc.h ../include/base/vec.h
base/sigfun.o: ../include/itconfig.h ../include/base/binary.h
base/sigfun.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/sigfun.o: ../include/base/factory.h ../src/base/copy_vector.h
base/sigfun.o: ../include/base/cblas.h ../include/base/mat.h
base/sigfun.o: ../include/base/help_functions.h ../include/base/converters.h
base/sigfun.o: ../include/base/matfunc.h ../include/base/specmat.h
base/sigfun.o: ../include/base/sort.h ../include/base/stat.h
base/sigfun.o: ../include/base/operators.h ../include/base/sigfun.h
base/sigfun.o: ../include/base/transforms.h
base/source.o: ../include/base/binary.h ../include/base/itassert.h
base/source.o: ../include/itconfig.h ../include/base/matfunc.h
base/source.o: ../include/base/vec.h ../include/base/scalfunc.h
base/source.o: ../include/base/factory.h ../src/base/copy_vector.h
base/source.o: ../include/base/cblas.h ../include/base/mat.h
base/source.o: ../include/base/converters.h ../include/base/specmat.h
base/source.o: ../include/base/sort.h ../include/base/source.h
base/transforms.o: ../include/base/matfunc.h ../include/base/vec.h
base/transforms.o: ../include/itconfig.h ../include/base/binary.h
base/transforms.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/transforms.o: ../include/base/factory.h ../src/base/copy_vector.h
base/transforms.o: ../include/base/cblas.h ../include/base/mat.h
base/transforms.o: ../include/base/converters.h ../include/base/specmat.h
base/transforms.o: ../include/base/sort.h ../include/base/transforms.h
base/transforms.o: ../include/base/elmatfunc.h
base/transforms.o: ../include/base/help_functions.h base/fftw3.h
base/random.o: ../include/base/binary.h ../include/base/itassert.h
base/random.o: ../include/itconfig.h ../include/base/matfunc.h
base/random.o: ../include/base/vec.h ../include/base/scalfunc.h
base/random.o: ../include/base/factory.h ../src/base/copy_vector.h
base/random.o: ../include/base/cblas.h ../include/base/mat.h
base/random.o: ../include/base/converters.h ../include/base/specmat.h
base/random.o: ../include/base/sort.h ../include/base/random.h
base/random.o: ../include/base/operators.h
base/plot_pdf.o: ../include/base/plot_pdf.h ../src/base/libharu.h
base/plot_pdf.o: ../include/base/vec.h ../include/itconfig.h
base/plot_pdf.o: ../include/base/binary.h ../include/base/itassert.h
base/plot_pdf.o: ../include/base/scalfunc.h ../include/base/factory.h
base/plot_pdf.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/plot_pdf.o: ../include/base/mat.h ../include/base/array.h
base/plot_pdf.o: ../include/base/converters.h ../include/base/itfile.h
base/plot_pdf.o: ../include/base/binfile.h ../include/base/machdep.h
base/fix_base.o: ../include/base/fix_base.h ../include/base/stat.h
base/fix_base.o: ../include/base/vec.h ../include/itconfig.h
base/fix_base.o: ../include/base/binary.h ../include/base/itassert.h
base/fix_base.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fix_base.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_base.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_base.o: ../include/base/converters.h ../include/base/specmat.h
base/fix_base.o: ../include/base/sort.h
base/fix.o: ../include/base/fix.h ../include/base/fix_base.h
base/fix.o: ../include/base/stat.h ../include/base/vec.h
base/fix.o: ../include/itconfig.h ../include/base/binary.h
base/fix.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/fix.o: ../include/base/factory.h ../src/base/copy_vector.h
base/fix.o: ../include/base/cblas.h ../include/base/mat.h
base/fix.o: ../include/base/matfunc.h ../include/base/converters.h
base/fix.o: ../include/base/specmat.h ../include/base/sort.h
base/fix.o: ../include/base/fix_factory.h
base/fixed.o: ../include/base/fixed.h ../include/base/fix.h
base/fixed.o: ../include/base/fix_base.h ../include/base/stat.h
base/fixed.o: ../include/base/vec.h ../include/itconfig.h
base/fixed.o: ../include/base/binary.h ../include/base/itassert.h
base/fixed.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fixed.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fixed.o: ../include/base/mat.h ../include/base/matfunc.h
base/fixed.o: ../include/base/converters.h ../include/base/specmat.h
base/fixed.o: ../include/base/sort.h ../include/base/fix_factory.h
base/cfix.o: ../include/base/cfix.h ../include/base/fix_base.h
base/cfix.o: ../include/base/stat.h ../include/base/vec.h
base/cfix.o: ../include/itconfig.h ../include/base/binary.h
base/cfix.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/cfix.o: ../include/base/factory.h ../src/base/copy_vector.h
base/cfix.o: ../include/base/cblas.h ../include/base/mat.h
base/cfix.o: ../include/base/matfunc.h ../include/base/converters.h
base/cfix.o: ../include/base/specmat.h ../include/base/sort.h
base/cfix.o: ../include/base/fix_factory.h ../include/base/fix.h
base/cfixed.o: ../include/base/cfixed.h ../include/base/fix.h
base/cfixed.o: ../include/base/fix_base.h ../include/base/stat.h
base/cfixed.o: ../include/base/vec.h ../include/itconfig.h
base/cfixed.o: ../include/base/binary.h ../include/base/itassert.h
base/cfixed.o: ../include/base/scalfunc.h ../include/base/factory.h
base/cfixed.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/cfixed.o: ../include/base/mat.h ../include/base/matfunc.h
base/cfixed.o: ../include/base/converters.h ../include/base/specmat.h
base/cfixed.o: ../include/base/sort.h ../include/base/fix_factory.h
base/cfixed.o: ../include/base/cfix.h
base/fix_factory.o: ../include/base/fix_factory.h ../include/base/factory.h
base/fix_factory.o: ../include/base/fix_base.h ../include/base/stat.h
base/fix_factory.o: ../include/base/vec.h ../include/itconfig.h
base/fix_factory.o: ../include/base/binary.h ../include/base/itassert.h
base/fix_factory.o: ../include/base/scalfunc.h ../src/base/copy_vector.h
base/fix_factory.o: ../include/base/cblas.h ../include/base/mat.h
base/fix_factory.o: ../include/base/matfunc.h ../include/base/converters.h
base/fix_factory.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_factory.o: ../include/base/fix.h ../include/base/cfix.h
base/fix_operators.o: ../include/base/fix_operators.h ../include/base/fix.h
base/fix_operators.o: ../include/base/fix_base.h ../include/base/stat.h
base/fix_operators.o: ../include/base/vec.h ../include/itconfig.h
base/fix_operators.o: ../include/base/binary.h ../include/base/itassert.h
base/fix_operators.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fix_operators.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_operators.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_operators.o: ../include/base/converters.h ../include/base/specmat.h
base/fix_operators.o: ../include/base/sort.h ../include/base/fix_factory.h
base/fix_operators.o: ../include/base/cfix.h ../include/base/fix_functions.h
base/fix_operators.o: ../include/base/array.h
base/fix_functions.o: ../include/base/fix_functions.h ../include/base/fix.h
base/fix_functions.o: ../include/base/fix_base.h ../include/base/stat.h
base/fix_functions.o: ../include/base/vec.h ../include/itconfig.h
base/fix_functions.o: ../include/base/binary.h ../include/base/itassert.h
base/fix_functions.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fix_functions.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_functions.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_functions.o: ../include/base/converters.h ../include/base/specmat.h
base/fix_functions.o: ../include/base/sort.h ../include/base/fix_factory.h
base/fix_functions.o: ../include/base/cfix.h ../include/base/array.h
base/fastica.o: ../include/base/fastica.h ../include/base/matfunc.h
base/fastica.o: ../include/base/vec.h ../include/itconfig.h
base/fastica.o: ../include/base/binary.h ../include/base/itassert.h
base/fastica.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fastica.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fastica.o: ../include/base/mat.h ../include/base/converters.h
base/fastica.o: ../include/base/specmat.h ../include/base/sort.h
base/fastica.o: ../include/base/svec.h ../include/base/stat.h
base/fastica.o: ../include/base/sigfun.h ../include/base/transforms.h
base/fastica.o: ../include/base/elmatfunc.h ../include/base/help_functions.h
base/fastica.o: ../include/base/eigen.h ../include/base/svd.h
base/fastica.o: ../include/base/random.h ../include/base/operators.h
base/stat.o: ../include/base/stat.h ../include/base/vec.h
base/stat.o: ../include/itconfig.h ../include/base/binary.h
base/stat.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/stat.o: ../include/base/factory.h ../src/base/copy_vector.h
base/stat.o: ../include/base/cblas.h ../include/base/mat.h
base/stat.o: ../include/base/matfunc.h ../include/base/converters.h
base/stat.o: ../include/base/specmat.h ../include/base/sort.h
base/stat.o: ../include/base/svd.h ../include/base/elmatfunc.h
base/stat.o: ../include/base/help_functions.h
base/integration.o: ../include/base/integration.h ../include/itconfig.h
base/integration.o: ../include/base/vec.h ../include/base/binary.h
base/integration.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/integration.o: ../include/base/factory.h ../src/base/copy_vector.h
base/integration.o: ../include/base/cblas.h ../include/base/mat.h
base/integration.o: ../include/base/specmat.h ../include/base/converters.h
base/integration.o: ../include/base/matfunc.h ../include/base/sort.h
base/integration.o: ../include/base/help_functions.h
base/bessel/airy.o: ../src/base/bessel/bessel_internal.h
base/bessel/i0.o: ../src/base/bessel/bessel_internal.h
base/bessel/i1.o: ../src/base/bessel/bessel_internal.h
base/bessel/iv.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/iv.o: ../include/base/scalfunc.h
base/bessel/iv.o: ../src/base/bessel/bessel_internal.h
base/bessel/jv.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/jv.o: ../include/base/scalfunc.h
base/bessel/jv.o: ../src/base/bessel/bessel_internal.h
base/bessel/kn.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/kn.o: ../src/base/bessel/bessel_internal.h
base/bessel/k0.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/k0.o: ../src/base/bessel/bessel_internal.h
base/bessel/k1.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/k1.o: ../src/base/bessel/bessel_internal.h
base/bessel/polevl.o: ../src/base/bessel/bessel_internal.h
base/bessel/chbevl.o: ../src/base/bessel/bessel_internal.h
base/bessel/hyperg.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/hyperg.o: ../include/base/scalfunc.h
base/bessel/hyperg.o: ../src/base/bessel/bessel_internal.h
base/bessel/struve.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/struve.o: ../include/base/scalfunc.h
base/bessel/struve.o: ../src/base/bessel/bessel_internal.h
comm/bch.o: ../include/comm/bch.h ../include/comm/galois.h
comm/bch.o: ../include/base/vec.h ../include/itconfig.h
comm/bch.o: ../include/base/binary.h ../include/base/itassert.h
comm/bch.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/bch.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/bch.o: ../include/base/mat.h ../include/base/specmat.h
comm/bch.o: ../include/base/converters.h ../include/base/array.h
comm/channel.o: ../include/comm/channel.h ../include/base/vec.h
comm/channel.o: ../include/itconfig.h ../include/base/binary.h
comm/channel.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/channel.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/channel.o: ../include/base/cblas.h ../include/base/mat.h
comm/channel.o: ../include/base/random.h ../include/base/operators.h
comm/channel.o: ../include/base/converters.h ../include/base/array.h
comm/channel.o: ../include/base/filter.h ../include/base/matfunc.h
comm/channel.o: ../include/base/specmat.h ../include/base/sort.h
comm/channel.o: ../include/base/stat.h ../include/base/elmatfunc.h
comm/channel.o: ../include/base/help_functions.h ../include/base/transforms.h
comm/channel.o: ../include/base/bessel.h
comm/commfunc.o: ../include/comm/commfunc.h ../include/base/mat.h
comm/commfunc.o: ../include/itconfig.h ../include/base/itassert.h
comm/commfunc.o: ../include/base/binary.h ../include/base/scalfunc.h
comm/commfunc.o: ../include/base/factory.h ../include/base/vec.h
comm/commfunc.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/commfunc.o: ../include/base/specmat.h ../include/base/converters.h
comm/commfunc.o: ../include/base/matfunc.h ../include/base/sort.h
comm/convcode.o: ../include/comm/convcode.h ../include/base/vec.h
comm/convcode.o: ../include/itconfig.h ../include/base/binary.h
comm/convcode.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/convcode.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/convcode.o: ../include/base/cblas.h ../include/base/mat.h
comm/convcode.o: ../include/base/array.h ../include/base/stat.h
comm/convcode.o: ../include/base/matfunc.h ../include/base/converters.h
comm/convcode.o: ../include/base/specmat.h ../include/base/sort.h
comm/punct_convcode.o: ../include/comm/punct_convcode.h
comm/punct_convcode.o: ../include/comm/convcode.h ../include/base/vec.h
comm/punct_convcode.o: ../include/itconfig.h ../include/base/binary.h
comm/punct_convcode.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/punct_convcode.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/punct_convcode.o: ../include/base/cblas.h ../include/base/mat.h
comm/punct_convcode.o: ../include/base/array.h ../include/base/matfunc.h
comm/punct_convcode.o: ../include/base/converters.h ../include/base/specmat.h
comm/punct_convcode.o: ../include/base/sort.h
comm/galois.o: ../include/comm/galois.h ../include/base/vec.h
comm/galois.o: ../include/itconfig.h ../include/base/binary.h
comm/galois.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/galois.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/galois.o: ../include/base/cblas.h ../include/base/mat.h
comm/galois.o: ../include/base/specmat.h ../include/base/converters.h
comm/galois.o: ../include/base/array.h
comm/hammcode.o: ../include/base/binary.h ../include/base/itassert.h
comm/hammcode.o: ../include/itconfig.h ../include/base/scalfunc.h
comm/hammcode.o: ../include/base/converters.h ../include/base/vec.h
comm/hammcode.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/hammcode.o: ../include/base/cblas.h ../include/base/mat.h
comm/hammcode.o: ../include/base/matfunc.h ../include/base/specmat.h
comm/hammcode.o: ../include/base/sort.h ../include/comm/hammcode.h
comm/interleave.o: ../include/comm/interleave.h ../include/base/binary.h
comm/interleave.o: ../include/base/itassert.h ../include/itconfig.h
comm/interleave.o: ../include/base/matfunc.h ../include/base/vec.h
comm/interleave.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/interleave.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/interleave.o: ../include/base/mat.h ../include/base/converters.h
comm/interleave.o: ../include/base/specmat.h ../include/base/sort.h
comm/interleave.o: ../include/base/random.h ../include/base/operators.h
comm/modulator.o: ../include/base/binary.h ../include/base/itassert.h
comm/modulator.o: ../include/itconfig.h ../include/base/matfunc.h
comm/modulator.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/modulator.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/modulator.o: ../include/base/cblas.h ../include/base/mat.h
comm/modulator.o: ../include/base/converters.h ../include/base/specmat.h
comm/modulator.o: ../include/base/sort.h ../include/comm/modulator.h
comm/modulator.o: ../include/comm/commfunc.h
comm/reedsolomon.o: ../include/base/binary.h ../include/base/itassert.h
comm/reedsolomon.o: ../include/itconfig.h ../include/comm/reedsolomon.h
comm/reedsolomon.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/reedsolomon.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/reedsolomon.o: ../include/base/cblas.h ../include/base/mat.h
comm/reedsolomon.o: ../include/comm/galois.h ../include/base/specmat.h
comm/reedsolomon.o: ../include/base/converters.h ../include/base/array.h
comm/spread.o: ../include/base/binary.h ../include/base/itassert.h
comm/spread.o: ../include/itconfig.h ../include/base/elmatfunc.h
comm/spread.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/spread.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/spread.o: ../include/base/cblas.h ../include/base/mat.h
comm/spread.o: ../include/base/help_functions.h ../include/base/converters.h
comm/spread.o: ../include/base/stat.h ../include/base/matfunc.h
comm/spread.o: ../include/base/specmat.h ../include/base/sort.h
comm/spread.o: ../include/base/fastmath.h ../include/base/operators.h
comm/spread.o: ../include/comm/spread.h
comm/egolay.o: ../include/base/specmat.h ../include/base/vec.h
comm/egolay.o: ../include/itconfig.h ../include/base/binary.h
comm/egolay.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/egolay.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/egolay.o: ../include/base/cblas.h ../include/base/mat.h
comm/egolay.o: ../include/base/converters.h ../include/comm/egolay.h
comm/egolay.o: ../include/comm/commfunc.h
comm/error_counters.o: ../include/itconfig.h ../include/base/binary.h
comm/error_counters.o: ../include/base/itassert.h ../include/base/matfunc.h
comm/error_counters.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/error_counters.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/error_counters.o: ../include/base/cblas.h ../include/base/mat.h
comm/error_counters.o: ../include/base/converters.h ../include/base/specmat.h
comm/error_counters.o: ../include/base/sort.h
comm/error_counters.o: ../include/comm/error_counters.h
comm/sequence.o: ../include/base/itassert.h ../include/itconfig.h
comm/sequence.o: ../include/comm/sequence.h ../include/base/vec.h
comm/sequence.o: ../include/base/binary.h ../include/base/scalfunc.h
comm/sequence.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/sequence.o: ../include/base/cblas.h ../include/base/mat.h
comm/sequence.o: ../include/base/specmat.h ../include/base/converters.h
comm/ofdm.o: ../include/comm/ofdm.h ../include/base/vec.h
comm/ofdm.o: ../include/itconfig.h ../include/base/binary.h
comm/ofdm.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/ofdm.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/ofdm.o: ../include/base/cblas.h ../include/base/mat.h
comm/ofdm.o: ../include/base/specmat.h ../include/base/converters.h
comm/ofdm.o: ../include/base/transforms.h ../include/base/operators.h
comm/rec_syst_conv_code.o: ../include/comm/rec_syst_conv_code.h
comm/rec_syst_conv_code.o: ../include/base/vec.h ../include/itconfig.h
comm/rec_syst_conv_code.o: ../include/base/binary.h
comm/rec_syst_conv_code.o: ../include/base/itassert.h
comm/rec_syst_conv_code.o: ../include/base/scalfunc.h
comm/rec_syst_conv_code.o: ../include/base/factory.h
comm/rec_syst_conv_code.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/rec_syst_conv_code.o: ../include/base/mat.h ../include/base/specmat.h
comm/rec_syst_conv_code.o: ../include/base/converters.h
comm/rec_syst_conv_code.o: ../include/base/matfunc.h ../include/base/sort.h
comm/rec_syst_conv_code.o: ../include/comm/convcode.h ../include/base/array.h
comm/turbo.o: ../include/comm/turbo.h ../include/base/vec.h
comm/turbo.o: ../include/itconfig.h ../include/base/binary.h
comm/turbo.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/turbo.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/turbo.o: ../include/base/cblas.h ../include/base/mat.h
comm/turbo.o: ../include/base/matfunc.h ../include/base/converters.h
comm/turbo.o: ../include/base/specmat.h ../include/base/sort.h
comm/turbo.o: ../include/base/random.h ../include/base/operators.h
comm/turbo.o: ../include/comm/rec_syst_conv_code.h ../include/comm/convcode.h
comm/turbo.o: ../include/base/array.h ../include/comm/interleave.h
comm/pulse_shape.o: ../include/comm/pulse_shape.h ../include/base/matfunc.h
comm/pulse_shape.o: ../include/base/vec.h ../include/itconfig.h
comm/pulse_shape.o: ../include/base/binary.h ../include/base/itassert.h
comm/pulse_shape.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/pulse_shape.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/pulse_shape.o: ../include/base/mat.h ../include/base/converters.h
comm/pulse_shape.o: ../include/base/specmat.h ../include/base/sort.h
comm/pulse_shape.o: ../include/base/filter.h
comm/crc.o: ../include/base/vec.h ../include/itconfig.h
comm/crc.o: ../include/base/binary.h ../include/base/itassert.h
comm/crc.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/crc.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/crc.o: ../include/base/mat.h ../include/base/specmat.h
comm/crc.o: ../include/base/converters.h ../include/base/matfunc.h
comm/crc.o: ../include/base/sort.h ../include/comm/crc.h
srccode/audiofile.o: ../include/srccode/audiofile.h ../include/itconfig.h
srccode/audiofile.o: ../include/base/vec.h ../include/base/binary.h
srccode/audiofile.o: ../include/base/itassert.h ../include/base/scalfunc.h
srccode/audiofile.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/audiofile.o: ../include/base/cblas.h ../include/base/mat.h
srccode/audiofile.o: ../include/base/machdep.h
srccode/pnm.o: ../include/base/itassert.h ../include/itconfig.h
srccode/pnm.o: ../include/srccode/pnm.h ../include/base/mat.h
srccode/pnm.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/pnm.o: ../include/base/factory.h ../include/base/vec.h
srccode/pnm.o: ../src/base/copy_vector.h ../include/base/cblas.h
srccode/lpcfunc.o: ../include/srccode/lpcfunc.h ../include/base/vec.h
srccode/lpcfunc.o: ../include/itconfig.h ../include/base/binary.h
srccode/lpcfunc.o: ../include/base/itassert.h ../include/base/scalfunc.h
srccode/lpcfunc.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/lpcfunc.o: ../include/base/cblas.h ../include/base/mat.h
srccode/lpcfunc.o: ../include/base/stat.h ../include/base/matfunc.h
srccode/lpcfunc.o: ../include/base/converters.h ../include/base/specmat.h
srccode/lpcfunc.o: ../include/base/sort.h
srccode/vq.o: ../include/srccode/vq.h ../include/itconfig.h
srccode/vq.o: ../include/base/itassert.h ../include/base/vec.h
srccode/vq.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/vq.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/vq.o: ../include/base/cblas.h ../include/base/mat.h
srccode/vq.o: ../include/base/elmatfunc.h ../include/base/help_functions.h
srccode/vq.o: ../include/base/converters.h ../include/base/array.h
srccode/vq.o: ../include/base/matfunc.h ../include/base/specmat.h
srccode/vq.o: ../include/base/sort.h
srccode/vqtrain.o: ../include/srccode/vqtrain.h ../include/base/mat.h
srccode/vqtrain.o: ../include/itconfig.h ../include/base/itassert.h
srccode/vqtrain.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/vqtrain.o: ../include/base/factory.h ../include/base/vec.h
srccode/vqtrain.o: ../src/base/copy_vector.h ../include/base/cblas.h
srccode/vqtrain.o: ../include/base/array.h ../include/base/random.h
srccode/vqtrain.o: ../include/base/operators.h ../include/base/converters.h
srccode/vqtrain.o: ../include/base/timing.h ../include/base/elmatfunc.h
srccode/vqtrain.o: ../include/base/help_functions.h ../include/base/stat.h
srccode/vqtrain.o: ../include/base/matfunc.h ../include/base/specmat.h
srccode/vqtrain.o: ../include/base/sort.h
srccode/gmm.o: ../include/base/random.h ../include/base/binary.h
srccode/gmm.o: ../include/base/itassert.h ../include/itconfig.h
srccode/gmm.o: ../include/base/vec.h ../include/base/scalfunc.h
srccode/gmm.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/gmm.o: ../include/base/cblas.h ../include/base/mat.h
srccode/gmm.o: ../include/base/operators.h ../include/base/converters.h
srccode/gmm.o: ../include/base/timing.h ../include/srccode/vqtrain.h
srccode/gmm.o: ../include/base/array.h ../include/base/matfunc.h
srccode/gmm.o: ../include/base/specmat.h ../include/base/sort.h
srccode/gmm.o: ../include/srccode/gmm.h ../include/base/elmatfunc.h
srccode/gmm.o: ../include/base/help_functions.h
base/itassert_debug.o: ../include/base/itassert.h ../include/itconfig.h
base/timing_debug.o: ../include/base/timing.h
base/binfile_debug.o: ../include/base/binfile.h ../include/itconfig.h
base/binfile_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/binfile_debug.o: ../include/base/machdep.h
base/itfile_debug.o: ../include/base/itfile.h ../include/base/binary.h
base/itfile_debug.o: ../include/base/itassert.h ../include/itconfig.h
base/itfile_debug.o: ../include/base/mat.h ../include/base/scalfunc.h
base/itfile_debug.o: ../include/base/factory.h ../include/base/vec.h
base/itfile_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/itfile_debug.o: ../include/base/array.h ../include/base/binfile.h
base/itfile_debug.o: ../include/base/machdep.h
base/parser_debug.o: ../include/base/parser.h ../include/base/vec.h
base/parser_debug.o: ../include/itconfig.h ../include/base/binary.h
base/parser_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/parser_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/parser_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/parser_debug.o: ../include/base/array.h
base/itpp_version_debug.o: ../include/base/itpp_version.h
base/itpp_version_debug.o: ../include/itconfig.h
base/vec_debug.o: ../include/base/vec.h ../include/itconfig.h
base/vec_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/vec_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/vec_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/vec_debug.o: ../include/base/mat.h
base/mat_debug.o: ../include/base/mat.h ../include/itconfig.h
base/mat_debug.o: ../include/base/itassert.h ../include/base/binary.h
base/mat_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/mat_debug.o: ../include/base/vec.h ../src/base/copy_vector.h
base/mat_debug.o: ../include/base/cblas.h
base/svec_debug.o: ../include/base/svec.h ../include/itconfig.h
base/svec_debug.o: ../include/base/vec.h ../include/base/binary.h
base/svec_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/svec_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/svec_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/svec_debug.o: ../include/base/matfunc.h ../include/base/converters.h
base/svec_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/svec_debug.o: ../include/base/stat.h
base/smat_debug.o: ../include/base/smat.h ../include/itconfig.h
base/smat_debug.o: ../include/base/svec.h ../include/base/vec.h
base/smat_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/smat_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/smat_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/smat_debug.o: ../include/base/mat.h ../include/base/matfunc.h
base/smat_debug.o: ../include/base/converters.h ../include/base/specmat.h
base/smat_debug.o: ../include/base/sort.h ../include/base/stat.h
base/eigen_debug.o: ../include/base/eigen.h ../include/base/vec.h
base/eigen_debug.o: ../include/itconfig.h ../include/base/binary.h
base/eigen_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/eigen_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/eigen_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/eigen_debug.o: ../include/base/matfunc.h ../include/base/converters.h
base/eigen_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/eigen_debug.o: ../src/base/lapack.h
base/binary_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/binary_debug.o: ../include/itconfig.h
base/bessel_debug.o: ../include/base/bessel.h ../include/base/vec.h
base/bessel_debug.o: ../include/itconfig.h ../include/base/binary.h
base/bessel_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/bessel_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/bessel_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/bessel_debug.o: ../src/base/bessel/bessel_internal.h
base/converters_debug.o: ../include/base/converters.h ../include/base/vec.h
base/converters_debug.o: ../include/itconfig.h ../include/base/binary.h
base/converters_debug.o: ../include/base/itassert.h
base/converters_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/converters_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/converters_debug.o: ../include/base/mat.h ../include/base/matfunc.h
base/converters_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/scalfunc_debug.o: ../include/base/itassert.h ../include/itconfig.h
base/scalfunc_debug.o: ../include/base/vec.h ../include/base/binary.h
base/scalfunc_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/scalfunc_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/scalfunc_debug.o: ../include/base/mat.h
base/elmatfunc_debug.o: ../include/base/elmatfunc.h ../include/base/vec.h
base/elmatfunc_debug.o: ../include/itconfig.h ../include/base/binary.h
base/elmatfunc_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/elmatfunc_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/elmatfunc_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/elmatfunc_debug.o: ../include/base/help_functions.h
base/elmatfunc_debug.o: ../include/base/converters.h
base/matfunc_debug.o: ../include/base/matfunc.h ../include/base/vec.h
base/matfunc_debug.o: ../include/itconfig.h ../include/base/binary.h
base/matfunc_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/matfunc_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/matfunc_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/matfunc_debug.o: ../include/base/converters.h ../include/base/specmat.h
base/matfunc_debug.o: ../include/base/sort.h
base/specmat_debug.o: ../include/base/specmat.h ../include/base/vec.h
base/specmat_debug.o: ../include/itconfig.h ../include/base/binary.h
base/specmat_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/specmat_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/specmat_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/specmat_debug.o: ../include/base/converters.h
base/specmat_debug.o: ../include/base/elmatfunc.h
base/specmat_debug.o: ../include/base/help_functions.h
base/specmat_debug.o: ../include/base/matfunc.h ../include/base/sort.h
base/specmat_debug.o: ../include/base/stat.h
base/operators_debug.o: ../include/base/operators.h ../include/base/vec.h
base/operators_debug.o: ../include/itconfig.h ../include/base/binary.h
base/operators_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/operators_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/operators_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/operators_debug.o: ../include/base/converters.h
base/fastmath_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/fastmath_debug.o: ../include/itconfig.h ../include/base/fastmath.h
base/fastmath_debug.o: ../include/base/vec.h ../include/base/scalfunc.h
base/fastmath_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/fastmath_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/cholesky_debug.o: ../include/itconfig.h ../include/base/cholesky.h
base/cholesky_debug.o: ../include/base/vec.h ../include/base/binary.h
base/cholesky_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/cholesky_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/cholesky_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/cholesky_debug.o: ../src/base/lapack.h
base/lu_debug.o: ../include/base/lu.h ../include/base/vec.h
base/lu_debug.o: ../include/itconfig.h ../include/base/binary.h
base/lu_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/lu_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/lu_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/lu_debug.o: ../include/base/matfunc.h ../include/base/converters.h
base/lu_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/lu_debug.o: ../src/base/lapack.h
base/qr_debug.o: ../include/base/qr.h ../include/base/vec.h
base/qr_debug.o: ../include/itconfig.h ../include/base/binary.h
base/qr_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/qr_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/qr_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/qr_debug.o: ../include/base/matfunc.h ../include/base/converters.h
base/qr_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/qr_debug.o: ../src/base/lapack.h
base/det_debug.o: ../include/base/vec.h ../include/itconfig.h
base/det_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/det_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/det_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/det_debug.o: ../include/base/mat.h ../include/base/lu.h
base/inv_debug.o: ../include/base/inv.h ../include/base/mat.h
base/inv_debug.o: ../include/itconfig.h ../include/base/itassert.h
base/inv_debug.o: ../include/base/binary.h ../include/base/scalfunc.h
base/inv_debug.o: ../include/base/factory.h ../include/base/vec.h
base/inv_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/inv_debug.o: ../src/base/lapack.h
base/ls_solve_debug.o: ../include/itconfig.h ../include/base/ls_solve.h
base/ls_solve_debug.o: ../include/base/vec.h ../include/base/binary.h
base/ls_solve_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/ls_solve_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/ls_solve_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/ls_solve_debug.o: ../include/base/cholesky.h ../src/base/lapack.h
base/svd_debug.o: ../include/base/svd.h ../include/base/vec.h
base/svd_debug.o: ../include/itconfig.h ../include/base/binary.h
base/svd_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/svd_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/svd_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/svd_debug.o: ../include/base/matfunc.h ../include/base/converters.h
base/svd_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/svd_debug.o: ../include/base/elmatfunc.h
base/svd_debug.o: ../include/base/help_functions.h ../src/base/lapack.h
base/filter_debug.o: ../include/base/filter.h ../include/itconfig.h
base/filter_debug.o: ../include/base/vec.h ../include/base/binary.h
base/filter_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/filter_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/filter_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/filter_debug.o: ../include/base/matfunc.h ../include/base/converters.h
base/filter_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/sigfun_debug.o: ../include/base/elmatfunc.h ../include/base/vec.h
base/sigfun_debug.o: ../include/itconfig.h ../include/base/binary.h
base/sigfun_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/sigfun_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/sigfun_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/sigfun_debug.o: ../include/base/help_functions.h
base/sigfun_debug.o: ../include/base/converters.h ../include/base/matfunc.h
base/sigfun_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/sigfun_debug.o: ../include/base/stat.h ../include/base/operators.h
base/sigfun_debug.o: ../include/base/sigfun.h ../include/base/transforms.h
base/source_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/source_debug.o: ../include/itconfig.h ../include/base/matfunc.h
base/source_debug.o: ../include/base/vec.h ../include/base/scalfunc.h
base/source_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/source_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/source_debug.o: ../include/base/converters.h ../include/base/specmat.h
base/source_debug.o: ../include/base/sort.h ../include/base/source.h
base/transforms_debug.o: ../include/base/matfunc.h ../include/base/vec.h
base/transforms_debug.o: ../include/itconfig.h ../include/base/binary.h
base/transforms_debug.o: ../include/base/itassert.h
base/transforms_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/transforms_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/transforms_debug.o: ../include/base/mat.h ../include/base/converters.h
base/transforms_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/transforms_debug.o: ../include/base/transforms.h
base/transforms_debug.o: ../include/base/elmatfunc.h
base/transforms_debug.o: ../include/base/help_functions.h base/fftw3.h
base/random_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/random_debug.o: ../include/itconfig.h ../include/base/matfunc.h
base/random_debug.o: ../include/base/vec.h ../include/base/scalfunc.h
base/random_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/random_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/random_debug.o: ../include/base/converters.h ../include/base/specmat.h
base/random_debug.o: ../include/base/sort.h ../include/base/random.h
base/random_debug.o: ../include/base/operators.h
base/plot_pdf_debug.o: ../include/base/plot_pdf.h ../src/base/libharu.h
base/plot_pdf_debug.o: ../include/base/vec.h ../include/itconfig.h
base/plot_pdf_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/plot_pdf_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/plot_pdf_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/plot_pdf_debug.o: ../include/base/mat.h ../include/base/array.h
base/plot_pdf_debug.o: ../include/base/converters.h ../include/base/itfile.h
base/plot_pdf_debug.o: ../include/base/binfile.h ../include/base/machdep.h
base/fix_base_debug.o: ../include/base/fix_base.h ../include/base/stat.h
base/fix_base_debug.o: ../include/base/vec.h ../include/itconfig.h
base/fix_base_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/fix_base_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fix_base_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_base_debug.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_base_debug.o: ../include/base/converters.h ../include/base/specmat.h
base/fix_base_debug.o: ../include/base/sort.h
base/fix_debug.o: ../include/base/fix.h ../include/base/fix_base.h
base/fix_debug.o: ../include/base/stat.h ../include/base/vec.h
base/fix_debug.o: ../include/itconfig.h ../include/base/binary.h
base/fix_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/fix_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/fix_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/fix_debug.o: ../include/base/matfunc.h ../include/base/converters.h
base/fix_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_debug.o: ../include/base/fix_factory.h
base/fixed_debug.o: ../include/base/fixed.h ../include/base/fix.h
base/fixed_debug.o: ../include/base/fix_base.h ../include/base/stat.h
base/fixed_debug.o: ../include/base/vec.h ../include/itconfig.h
base/fixed_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/fixed_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fixed_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fixed_debug.o: ../include/base/mat.h ../include/base/matfunc.h
base/fixed_debug.o: ../include/base/converters.h ../include/base/specmat.h
base/fixed_debug.o: ../include/base/sort.h ../include/base/fix_factory.h
base/cfix_debug.o: ../include/base/cfix.h ../include/base/fix_base.h
base/cfix_debug.o: ../include/base/stat.h ../include/base/vec.h
base/cfix_debug.o: ../include/itconfig.h ../include/base/binary.h
base/cfix_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/cfix_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/cfix_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/cfix_debug.o: ../include/base/matfunc.h ../include/base/converters.h
base/cfix_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/cfix_debug.o: ../include/base/fix_factory.h ../include/base/fix.h
base/cfixed_debug.o: ../include/base/cfixed.h ../include/base/fix.h
base/cfixed_debug.o: ../include/base/fix_base.h ../include/base/stat.h
base/cfixed_debug.o: ../include/base/vec.h ../include/itconfig.h
base/cfixed_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/cfixed_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/cfixed_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/cfixed_debug.o: ../include/base/mat.h ../include/base/matfunc.h
base/cfixed_debug.o: ../include/base/converters.h ../include/base/specmat.h
base/cfixed_debug.o: ../include/base/sort.h ../include/base/fix_factory.h
base/cfixed_debug.o: ../include/base/cfix.h
base/fix_factory_debug.o: ../include/base/fix_factory.h
base/fix_factory_debug.o: ../include/base/factory.h
base/fix_factory_debug.o: ../include/base/fix_base.h ../include/base/stat.h
base/fix_factory_debug.o: ../include/base/vec.h ../include/itconfig.h
base/fix_factory_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/fix_factory_debug.o: ../include/base/scalfunc.h
base/fix_factory_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_factory_debug.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_factory_debug.o: ../include/base/converters.h
base/fix_factory_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_factory_debug.o: ../include/base/fix.h ../include/base/cfix.h
base/fix_operators_debug.o: ../include/base/fix_operators.h
base/fix_operators_debug.o: ../include/base/fix.h ../include/base/fix_base.h
base/fix_operators_debug.o: ../include/base/stat.h ../include/base/vec.h
base/fix_operators_debug.o: ../include/itconfig.h ../include/base/binary.h
base/fix_operators_debug.o: ../include/base/itassert.h
base/fix_operators_debug.o: ../include/base/scalfunc.h
base/fix_operators_debug.o: ../include/base/factory.h
base/fix_operators_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_operators_debug.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_operators_debug.o: ../include/base/converters.h
base/fix_operators_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_operators_debug.o: ../include/base/fix_factory.h
base/fix_operators_debug.o: ../include/base/cfix.h
base/fix_operators_debug.o: ../include/base/fix_functions.h
base/fix_operators_debug.o: ../include/base/array.h
base/fix_functions_debug.o: ../include/base/fix_functions.h
base/fix_functions_debug.o: ../include/base/fix.h ../include/base/fix_base.h
base/fix_functions_debug.o: ../include/base/stat.h ../include/base/vec.h
base/fix_functions_debug.o: ../include/itconfig.h ../include/base/binary.h
base/fix_functions_debug.o: ../include/base/itassert.h
base/fix_functions_debug.o: ../include/base/scalfunc.h
base/fix_functions_debug.o: ../include/base/factory.h
base/fix_functions_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_functions_debug.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_functions_debug.o: ../include/base/converters.h
base/fix_functions_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_functions_debug.o: ../include/base/fix_factory.h
base/fix_functions_debug.o: ../include/base/cfix.h ../include/base/array.h
base/fastica_debug.o: ../include/base/fastica.h ../include/base/matfunc.h
base/fastica_debug.o: ../include/base/vec.h ../include/itconfig.h
base/fastica_debug.o: ../include/base/binary.h ../include/base/itassert.h
base/fastica_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fastica_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fastica_debug.o: ../include/base/mat.h ../include/base/converters.h
base/fastica_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/fastica_debug.o: ../include/base/svec.h ../include/base/stat.h
base/fastica_debug.o: ../include/base/sigfun.h ../include/base/transforms.h
base/fastica_debug.o: ../include/base/elmatfunc.h
base/fastica_debug.o: ../include/base/help_functions.h
base/fastica_debug.o: ../include/base/eigen.h ../include/base/svd.h
base/fastica_debug.o: ../include/base/random.h ../include/base/operators.h
base/stat_debug.o: ../include/base/stat.h ../include/base/vec.h
base/stat_debug.o: ../include/itconfig.h ../include/base/binary.h
base/stat_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/stat_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/stat_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/stat_debug.o: ../include/base/matfunc.h ../include/base/converters.h
base/stat_debug.o: ../include/base/specmat.h ../include/base/sort.h
base/stat_debug.o: ../include/base/svd.h ../include/base/elmatfunc.h
base/stat_debug.o: ../include/base/help_functions.h
base/integration_debug.o: ../include/base/integration.h ../include/itconfig.h
base/integration_debug.o: ../include/base/vec.h ../include/base/binary.h
base/integration_debug.o: ../include/base/itassert.h
base/integration_debug.o: ../include/base/scalfunc.h
base/integration_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
base/integration_debug.o: ../include/base/cblas.h ../include/base/mat.h
base/integration_debug.o: ../include/base/specmat.h
base/integration_debug.o: ../include/base/converters.h
base/integration_debug.o: ../include/base/matfunc.h ../include/base/sort.h
base/integration_debug.o: ../include/base/help_functions.h
base/bessel/airy_debug.o: ../src/base/bessel/bessel_internal.h
base/bessel/i0_debug.o: ../src/base/bessel/bessel_internal.h
base/bessel/i1_debug.o: ../src/base/bessel/bessel_internal.h
base/bessel/iv_debug.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/iv_debug.o: ../include/base/scalfunc.h
base/bessel/iv_debug.o: ../src/base/bessel/bessel_internal.h
base/bessel/jv_debug.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/jv_debug.o: ../include/base/scalfunc.h
base/bessel/jv_debug.o: ../src/base/bessel/bessel_internal.h
base/bessel/kn_debug.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/kn_debug.o: ../src/base/bessel/bessel_internal.h
base/bessel/k0_debug.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/k0_debug.o: ../src/base/bessel/bessel_internal.h
base/bessel/k1_debug.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/k1_debug.o: ../src/base/bessel/bessel_internal.h
base/bessel/polevl_debug.o: ../src/base/bessel/bessel_internal.h
base/bessel/chbevl_debug.o: ../src/base/bessel/bessel_internal.h
base/bessel/hyperg_debug.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/hyperg_debug.o: ../include/base/scalfunc.h
base/bessel/hyperg_debug.o: ../src/base/bessel/bessel_internal.h
base/bessel/struve_debug.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/struve_debug.o: ../include/base/scalfunc.h
base/bessel/struve_debug.o: ../src/base/bessel/bessel_internal.h
comm/bch_debug.o: ../include/comm/bch.h ../include/comm/galois.h
comm/bch_debug.o: ../include/base/vec.h ../include/itconfig.h
comm/bch_debug.o: ../include/base/binary.h ../include/base/itassert.h
comm/bch_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/bch_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/bch_debug.o: ../include/base/mat.h ../include/base/specmat.h
comm/bch_debug.o: ../include/base/converters.h ../include/base/array.h
comm/channel_debug.o: ../include/comm/channel.h ../include/base/vec.h
comm/channel_debug.o: ../include/itconfig.h ../include/base/binary.h
comm/channel_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/channel_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/channel_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/channel_debug.o: ../include/base/random.h ../include/base/operators.h
comm/channel_debug.o: ../include/base/converters.h ../include/base/array.h
comm/channel_debug.o: ../include/base/filter.h ../include/base/matfunc.h
comm/channel_debug.o: ../include/base/specmat.h ../include/base/sort.h
comm/channel_debug.o: ../include/base/stat.h ../include/base/elmatfunc.h
comm/channel_debug.o: ../include/base/help_functions.h
comm/channel_debug.o: ../include/base/transforms.h ../include/base/bessel.h
comm/commfunc_debug.o: ../include/comm/commfunc.h ../include/base/mat.h
comm/commfunc_debug.o: ../include/itconfig.h ../include/base/itassert.h
comm/commfunc_debug.o: ../include/base/binary.h ../include/base/scalfunc.h
comm/commfunc_debug.o: ../include/base/factory.h ../include/base/vec.h
comm/commfunc_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/commfunc_debug.o: ../include/base/specmat.h ../include/base/converters.h
comm/commfunc_debug.o: ../include/base/matfunc.h ../include/base/sort.h
comm/convcode_debug.o: ../include/comm/convcode.h ../include/base/vec.h
comm/convcode_debug.o: ../include/itconfig.h ../include/base/binary.h
comm/convcode_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/convcode_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/convcode_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/convcode_debug.o: ../include/base/array.h ../include/base/stat.h
comm/convcode_debug.o: ../include/base/matfunc.h ../include/base/converters.h
comm/convcode_debug.o: ../include/base/specmat.h ../include/base/sort.h
comm/punct_convcode_debug.o: ../include/comm/punct_convcode.h
comm/punct_convcode_debug.o: ../include/comm/convcode.h ../include/base/vec.h
comm/punct_convcode_debug.o: ../include/itconfig.h ../include/base/binary.h
comm/punct_convcode_debug.o: ../include/base/itassert.h
comm/punct_convcode_debug.o: ../include/base/scalfunc.h
comm/punct_convcode_debug.o: ../include/base/factory.h
comm/punct_convcode_debug.o: ../src/base/copy_vector.h
comm/punct_convcode_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/punct_convcode_debug.o: ../include/base/array.h
comm/punct_convcode_debug.o: ../include/base/matfunc.h
comm/punct_convcode_debug.o: ../include/base/converters.h
comm/punct_convcode_debug.o: ../include/base/specmat.h ../include/base/sort.h
comm/galois_debug.o: ../include/comm/galois.h ../include/base/vec.h
comm/galois_debug.o: ../include/itconfig.h ../include/base/binary.h
comm/galois_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/galois_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/galois_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/galois_debug.o: ../include/base/specmat.h ../include/base/converters.h
comm/galois_debug.o: ../include/base/array.h
comm/hammcode_debug.o: ../include/base/binary.h ../include/base/itassert.h
comm/hammcode_debug.o: ../include/itconfig.h ../include/base/scalfunc.h
comm/hammcode_debug.o: ../include/base/converters.h ../include/base/vec.h
comm/hammcode_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/hammcode_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/hammcode_debug.o: ../include/base/matfunc.h ../include/base/specmat.h
comm/hammcode_debug.o: ../include/base/sort.h ../include/comm/hammcode.h
comm/interleave_debug.o: ../include/comm/interleave.h
comm/interleave_debug.o: ../include/base/binary.h ../include/base/itassert.h
comm/interleave_debug.o: ../include/itconfig.h ../include/base/matfunc.h
comm/interleave_debug.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/interleave_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/interleave_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/interleave_debug.o: ../include/base/converters.h
comm/interleave_debug.o: ../include/base/specmat.h ../include/base/sort.h
comm/interleave_debug.o: ../include/base/random.h ../include/base/operators.h
comm/modulator_debug.o: ../include/base/binary.h ../include/base/itassert.h
comm/modulator_debug.o: ../include/itconfig.h ../include/base/matfunc.h
comm/modulator_debug.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/modulator_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/modulator_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/modulator_debug.o: ../include/base/converters.h
comm/modulator_debug.o: ../include/base/specmat.h ../include/base/sort.h
comm/modulator_debug.o: ../include/comm/modulator.h
comm/modulator_debug.o: ../include/comm/commfunc.h
comm/reedsolomon_debug.o: ../include/base/binary.h ../include/base/itassert.h
comm/reedsolomon_debug.o: ../include/itconfig.h ../include/comm/reedsolomon.h
comm/reedsolomon_debug.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/reedsolomon_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/reedsolomon_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/reedsolomon_debug.o: ../include/comm/galois.h ../include/base/specmat.h
comm/reedsolomon_debug.o: ../include/base/converters.h
comm/reedsolomon_debug.o: ../include/base/array.h
comm/spread_debug.o: ../include/base/binary.h ../include/base/itassert.h
comm/spread_debug.o: ../include/itconfig.h ../include/base/elmatfunc.h
comm/spread_debug.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/spread_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/spread_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/spread_debug.o: ../include/base/help_functions.h
comm/spread_debug.o: ../include/base/converters.h ../include/base/stat.h
comm/spread_debug.o: ../include/base/matfunc.h ../include/base/specmat.h
comm/spread_debug.o: ../include/base/sort.h ../include/base/fastmath.h
comm/spread_debug.o: ../include/base/operators.h ../include/comm/spread.h
comm/egolay_debug.o: ../include/base/specmat.h ../include/base/vec.h
comm/egolay_debug.o: ../include/itconfig.h ../include/base/binary.h
comm/egolay_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/egolay_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/egolay_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/egolay_debug.o: ../include/base/converters.h ../include/comm/egolay.h
comm/egolay_debug.o: ../include/comm/commfunc.h
comm/error_counters_debug.o: ../include/itconfig.h ../include/base/binary.h
comm/error_counters_debug.o: ../include/base/itassert.h
comm/error_counters_debug.o: ../include/base/matfunc.h ../include/base/vec.h
comm/error_counters_debug.o: ../include/base/scalfunc.h
comm/error_counters_debug.o: ../include/base/factory.h
comm/error_counters_debug.o: ../src/base/copy_vector.h
comm/error_counters_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/error_counters_debug.o: ../include/base/converters.h
comm/error_counters_debug.o: ../include/base/specmat.h ../include/base/sort.h
comm/error_counters_debug.o: ../include/comm/error_counters.h
comm/sequence_debug.o: ../include/base/itassert.h ../include/itconfig.h
comm/sequence_debug.o: ../include/comm/sequence.h ../include/base/vec.h
comm/sequence_debug.o: ../include/base/binary.h ../include/base/scalfunc.h
comm/sequence_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/sequence_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/sequence_debug.o: ../include/base/specmat.h ../include/base/converters.h
comm/ofdm_debug.o: ../include/comm/ofdm.h ../include/base/vec.h
comm/ofdm_debug.o: ../include/itconfig.h ../include/base/binary.h
comm/ofdm_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/ofdm_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/ofdm_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/ofdm_debug.o: ../include/base/specmat.h ../include/base/converters.h
comm/ofdm_debug.o: ../include/base/transforms.h ../include/base/operators.h
comm/rec_syst_conv_code_debug.o: ../include/comm/rec_syst_conv_code.h
comm/rec_syst_conv_code_debug.o: ../include/base/vec.h ../include/itconfig.h
comm/rec_syst_conv_code_debug.o: ../include/base/binary.h
comm/rec_syst_conv_code_debug.o: ../include/base/itassert.h
comm/rec_syst_conv_code_debug.o: ../include/base/scalfunc.h
comm/rec_syst_conv_code_debug.o: ../include/base/factory.h
comm/rec_syst_conv_code_debug.o: ../src/base/copy_vector.h
comm/rec_syst_conv_code_debug.o: ../include/base/cblas.h
comm/rec_syst_conv_code_debug.o: ../include/base/mat.h
comm/rec_syst_conv_code_debug.o: ../include/base/specmat.h
comm/rec_syst_conv_code_debug.o: ../include/base/converters.h
comm/rec_syst_conv_code_debug.o: ../include/base/matfunc.h
comm/rec_syst_conv_code_debug.o: ../include/base/sort.h
comm/rec_syst_conv_code_debug.o: ../include/comm/convcode.h
comm/rec_syst_conv_code_debug.o: ../include/base/array.h
comm/turbo_debug.o: ../include/comm/turbo.h ../include/base/vec.h
comm/turbo_debug.o: ../include/itconfig.h ../include/base/binary.h
comm/turbo_debug.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/turbo_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/turbo_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/turbo_debug.o: ../include/base/matfunc.h ../include/base/converters.h
comm/turbo_debug.o: ../include/base/specmat.h ../include/base/sort.h
comm/turbo_debug.o: ../include/base/random.h ../include/base/operators.h
comm/turbo_debug.o: ../include/comm/rec_syst_conv_code.h
comm/turbo_debug.o: ../include/comm/convcode.h ../include/base/array.h
comm/turbo_debug.o: ../include/comm/interleave.h
comm/pulse_shape_debug.o: ../include/comm/pulse_shape.h
comm/pulse_shape_debug.o: ../include/base/matfunc.h ../include/base/vec.h
comm/pulse_shape_debug.o: ../include/itconfig.h ../include/base/binary.h
comm/pulse_shape_debug.o: ../include/base/itassert.h
comm/pulse_shape_debug.o: ../include/base/scalfunc.h
comm/pulse_shape_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/pulse_shape_debug.o: ../include/base/cblas.h ../include/base/mat.h
comm/pulse_shape_debug.o: ../include/base/converters.h
comm/pulse_shape_debug.o: ../include/base/specmat.h ../include/base/sort.h
comm/pulse_shape_debug.o: ../include/base/filter.h
comm/crc_debug.o: ../include/base/vec.h ../include/itconfig.h
comm/crc_debug.o: ../include/base/binary.h ../include/base/itassert.h
comm/crc_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/crc_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/crc_debug.o: ../include/base/mat.h ../include/base/specmat.h
comm/crc_debug.o: ../include/base/converters.h ../include/base/matfunc.h
comm/crc_debug.o: ../include/base/sort.h ../include/comm/crc.h
srccode/audiofile_debug.o: ../include/srccode/audiofile.h
srccode/audiofile_debug.o: ../include/itconfig.h ../include/base/vec.h
srccode/audiofile_debug.o: ../include/base/binary.h
srccode/audiofile_debug.o: ../include/base/itassert.h
srccode/audiofile_debug.o: ../include/base/scalfunc.h
srccode/audiofile_debug.o: ../include/base/factory.h
srccode/audiofile_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
srccode/audiofile_debug.o: ../include/base/mat.h ../include/base/machdep.h
srccode/pnm_debug.o: ../include/base/itassert.h ../include/itconfig.h
srccode/pnm_debug.o: ../include/srccode/pnm.h ../include/base/mat.h
srccode/pnm_debug.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/pnm_debug.o: ../include/base/factory.h ../include/base/vec.h
srccode/pnm_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
srccode/lpcfunc_debug.o: ../include/srccode/lpcfunc.h ../include/base/vec.h
srccode/lpcfunc_debug.o: ../include/itconfig.h ../include/base/binary.h
srccode/lpcfunc_debug.o: ../include/base/itassert.h
srccode/lpcfunc_debug.o: ../include/base/scalfunc.h ../include/base/factory.h
srccode/lpcfunc_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
srccode/lpcfunc_debug.o: ../include/base/mat.h ../include/base/stat.h
srccode/lpcfunc_debug.o: ../include/base/matfunc.h
srccode/lpcfunc_debug.o: ../include/base/converters.h
srccode/lpcfunc_debug.o: ../include/base/specmat.h ../include/base/sort.h
srccode/vq_debug.o: ../include/srccode/vq.h ../include/itconfig.h
srccode/vq_debug.o: ../include/base/itassert.h ../include/base/vec.h
srccode/vq_debug.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/vq_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/vq_debug.o: ../include/base/cblas.h ../include/base/mat.h
srccode/vq_debug.o: ../include/base/elmatfunc.h
srccode/vq_debug.o: ../include/base/help_functions.h
srccode/vq_debug.o: ../include/base/converters.h ../include/base/array.h
srccode/vq_debug.o: ../include/base/matfunc.h ../include/base/specmat.h
srccode/vq_debug.o: ../include/base/sort.h
srccode/vqtrain_debug.o: ../include/srccode/vqtrain.h ../include/base/mat.h
srccode/vqtrain_debug.o: ../include/itconfig.h ../include/base/itassert.h
srccode/vqtrain_debug.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/vqtrain_debug.o: ../include/base/factory.h ../include/base/vec.h
srccode/vqtrain_debug.o: ../src/base/copy_vector.h ../include/base/cblas.h
srccode/vqtrain_debug.o: ../include/base/array.h ../include/base/random.h
srccode/vqtrain_debug.o: ../include/base/operators.h
srccode/vqtrain_debug.o: ../include/base/converters.h
srccode/vqtrain_debug.o: ../include/base/timing.h ../include/base/elmatfunc.h
srccode/vqtrain_debug.o: ../include/base/help_functions.h
srccode/vqtrain_debug.o: ../include/base/stat.h ../include/base/matfunc.h
srccode/vqtrain_debug.o: ../include/base/specmat.h ../include/base/sort.h
srccode/gmm_debug.o: ../include/base/random.h ../include/base/binary.h
srccode/gmm_debug.o: ../include/base/itassert.h ../include/itconfig.h
srccode/gmm_debug.o: ../include/base/vec.h ../include/base/scalfunc.h
srccode/gmm_debug.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/gmm_debug.o: ../include/base/cblas.h ../include/base/mat.h
srccode/gmm_debug.o: ../include/base/operators.h ../include/base/converters.h
srccode/gmm_debug.o: ../include/base/timing.h ../include/srccode/vqtrain.h
srccode/gmm_debug.o: ../include/base/array.h ../include/base/matfunc.h
srccode/gmm_debug.o: ../include/base/specmat.h ../include/base/sort.h
srccode/gmm_debug.o: ../include/srccode/gmm.h ../include/base/elmatfunc.h
srccode/gmm_debug.o: ../include/base/help_functions.h
base/itassert_prof.o: ../include/base/itassert.h ../include/itconfig.h
base/timing_prof.o: ../include/base/timing.h
base/binfile_prof.o: ../include/base/binfile.h ../include/itconfig.h
base/binfile_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/binfile_prof.o: ../include/base/machdep.h
base/itfile_prof.o: ../include/base/itfile.h ../include/base/binary.h
base/itfile_prof.o: ../include/base/itassert.h ../include/itconfig.h
base/itfile_prof.o: ../include/base/mat.h ../include/base/scalfunc.h
base/itfile_prof.o: ../include/base/factory.h ../include/base/vec.h
base/itfile_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/itfile_prof.o: ../include/base/array.h ../include/base/binfile.h
base/itfile_prof.o: ../include/base/machdep.h
base/parser_prof.o: ../include/base/parser.h ../include/base/vec.h
base/parser_prof.o: ../include/itconfig.h ../include/base/binary.h
base/parser_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/parser_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/parser_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/parser_prof.o: ../include/base/array.h
base/itpp_version_prof.o: ../include/base/itpp_version.h
base/itpp_version_prof.o: ../include/itconfig.h
base/vec_prof.o: ../include/base/vec.h ../include/itconfig.h
base/vec_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/vec_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
base/vec_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/vec_prof.o: ../include/base/mat.h
base/mat_prof.o: ../include/base/mat.h ../include/itconfig.h
base/mat_prof.o: ../include/base/itassert.h ../include/base/binary.h
base/mat_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
base/mat_prof.o: ../include/base/vec.h ../src/base/copy_vector.h
base/mat_prof.o: ../include/base/cblas.h
base/svec_prof.o: ../include/base/svec.h ../include/itconfig.h
base/svec_prof.o: ../include/base/vec.h ../include/base/binary.h
base/svec_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/svec_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/svec_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/svec_prof.o: ../include/base/matfunc.h ../include/base/converters.h
base/svec_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/svec_prof.o: ../include/base/stat.h
base/smat_prof.o: ../include/base/smat.h ../include/itconfig.h
base/smat_prof.o: ../include/base/svec.h ../include/base/vec.h
base/smat_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/smat_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
base/smat_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/smat_prof.o: ../include/base/mat.h ../include/base/matfunc.h
base/smat_prof.o: ../include/base/converters.h ../include/base/specmat.h
base/smat_prof.o: ../include/base/sort.h ../include/base/stat.h
base/eigen_prof.o: ../include/base/eigen.h ../include/base/vec.h
base/eigen_prof.o: ../include/itconfig.h ../include/base/binary.h
base/eigen_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/eigen_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/eigen_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/eigen_prof.o: ../include/base/matfunc.h ../include/base/converters.h
base/eigen_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/eigen_prof.o: ../src/base/lapack.h
base/binary_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/binary_prof.o: ../include/itconfig.h
base/bessel_prof.o: ../include/base/bessel.h ../include/base/vec.h
base/bessel_prof.o: ../include/itconfig.h ../include/base/binary.h
base/bessel_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/bessel_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/bessel_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/bessel_prof.o: ../src/base/bessel/bessel_internal.h
base/converters_prof.o: ../include/base/converters.h ../include/base/vec.h
base/converters_prof.o: ../include/itconfig.h ../include/base/binary.h
base/converters_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/converters_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/converters_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/converters_prof.o: ../include/base/matfunc.h ../include/base/specmat.h
base/converters_prof.o: ../include/base/sort.h
base/scalfunc_prof.o: ../include/base/itassert.h ../include/itconfig.h
base/scalfunc_prof.o: ../include/base/vec.h ../include/base/binary.h
base/scalfunc_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
base/scalfunc_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/scalfunc_prof.o: ../include/base/mat.h
base/elmatfunc_prof.o: ../include/base/elmatfunc.h ../include/base/vec.h
base/elmatfunc_prof.o: ../include/itconfig.h ../include/base/binary.h
base/elmatfunc_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/elmatfunc_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/elmatfunc_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/elmatfunc_prof.o: ../include/base/help_functions.h
base/elmatfunc_prof.o: ../include/base/converters.h
base/matfunc_prof.o: ../include/base/matfunc.h ../include/base/vec.h
base/matfunc_prof.o: ../include/itconfig.h ../include/base/binary.h
base/matfunc_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/matfunc_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/matfunc_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/matfunc_prof.o: ../include/base/converters.h ../include/base/specmat.h
base/matfunc_prof.o: ../include/base/sort.h
base/specmat_prof.o: ../include/base/specmat.h ../include/base/vec.h
base/specmat_prof.o: ../include/itconfig.h ../include/base/binary.h
base/specmat_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/specmat_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/specmat_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/specmat_prof.o: ../include/base/converters.h ../include/base/elmatfunc.h
base/specmat_prof.o: ../include/base/help_functions.h
base/specmat_prof.o: ../include/base/matfunc.h ../include/base/sort.h
base/specmat_prof.o: ../include/base/stat.h
base/operators_prof.o: ../include/base/operators.h ../include/base/vec.h
base/operators_prof.o: ../include/itconfig.h ../include/base/binary.h
base/operators_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/operators_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/operators_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/operators_prof.o: ../include/base/converters.h
base/fastmath_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/fastmath_prof.o: ../include/itconfig.h ../include/base/fastmath.h
base/fastmath_prof.o: ../include/base/vec.h ../include/base/scalfunc.h
base/fastmath_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/fastmath_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/cholesky_prof.o: ../include/itconfig.h ../include/base/cholesky.h
base/cholesky_prof.o: ../include/base/vec.h ../include/base/binary.h
base/cholesky_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/cholesky_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/cholesky_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/cholesky_prof.o: ../src/base/lapack.h
base/lu_prof.o: ../include/base/lu.h ../include/base/vec.h
base/lu_prof.o: ../include/itconfig.h ../include/base/binary.h
base/lu_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/lu_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/lu_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/lu_prof.o: ../include/base/matfunc.h ../include/base/converters.h
base/lu_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/lu_prof.o: ../src/base/lapack.h
base/qr_prof.o: ../include/base/qr.h ../include/base/vec.h
base/qr_prof.o: ../include/itconfig.h ../include/base/binary.h
base/qr_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/qr_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/qr_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/qr_prof.o: ../include/base/matfunc.h ../include/base/converters.h
base/qr_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/qr_prof.o: ../src/base/lapack.h
base/det_prof.o: ../include/base/vec.h ../include/itconfig.h
base/det_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/det_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
base/det_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/det_prof.o: ../include/base/mat.h ../include/base/lu.h
base/inv_prof.o: ../include/base/inv.h ../include/base/mat.h
base/inv_prof.o: ../include/itconfig.h ../include/base/itassert.h
base/inv_prof.o: ../include/base/binary.h ../include/base/scalfunc.h
base/inv_prof.o: ../include/base/factory.h ../include/base/vec.h
base/inv_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/inv_prof.o: ../src/base/lapack.h
base/ls_solve_prof.o: ../include/itconfig.h ../include/base/ls_solve.h
base/ls_solve_prof.o: ../include/base/vec.h ../include/base/binary.h
base/ls_solve_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/ls_solve_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/ls_solve_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/ls_solve_prof.o: ../include/base/cholesky.h ../src/base/lapack.h
base/svd_prof.o: ../include/base/svd.h ../include/base/vec.h
base/svd_prof.o: ../include/itconfig.h ../include/base/binary.h
base/svd_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/svd_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/svd_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/svd_prof.o: ../include/base/matfunc.h ../include/base/converters.h
base/svd_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/svd_prof.o: ../include/base/elmatfunc.h ../include/base/help_functions.h
base/svd_prof.o: ../src/base/lapack.h
base/filter_prof.o: ../include/base/filter.h ../include/itconfig.h
base/filter_prof.o: ../include/base/vec.h ../include/base/binary.h
base/filter_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/filter_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/filter_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/filter_prof.o: ../include/base/matfunc.h ../include/base/converters.h
base/filter_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/sigfun_prof.o: ../include/base/elmatfunc.h ../include/base/vec.h
base/sigfun_prof.o: ../include/itconfig.h ../include/base/binary.h
base/sigfun_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/sigfun_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/sigfun_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/sigfun_prof.o: ../include/base/help_functions.h
base/sigfun_prof.o: ../include/base/converters.h ../include/base/matfunc.h
base/sigfun_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/sigfun_prof.o: ../include/base/stat.h ../include/base/operators.h
base/sigfun_prof.o: ../include/base/sigfun.h ../include/base/transforms.h
base/source_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/source_prof.o: ../include/itconfig.h ../include/base/matfunc.h
base/source_prof.o: ../include/base/vec.h ../include/base/scalfunc.h
base/source_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/source_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/source_prof.o: ../include/base/converters.h ../include/base/specmat.h
base/source_prof.o: ../include/base/sort.h ../include/base/source.h
base/transforms_prof.o: ../include/base/matfunc.h ../include/base/vec.h
base/transforms_prof.o: ../include/itconfig.h ../include/base/binary.h
base/transforms_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/transforms_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/transforms_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/transforms_prof.o: ../include/base/converters.h
base/transforms_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/transforms_prof.o: ../include/base/transforms.h
base/transforms_prof.o: ../include/base/elmatfunc.h
base/transforms_prof.o: ../include/base/help_functions.h base/fftw3.h
base/random_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/random_prof.o: ../include/itconfig.h ../include/base/matfunc.h
base/random_prof.o: ../include/base/vec.h ../include/base/scalfunc.h
base/random_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/random_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/random_prof.o: ../include/base/converters.h ../include/base/specmat.h
base/random_prof.o: ../include/base/sort.h ../include/base/random.h
base/random_prof.o: ../include/base/operators.h
base/plot_pdf_prof.o: ../include/base/plot_pdf.h ../src/base/libharu.h
base/plot_pdf_prof.o: ../include/base/vec.h ../include/itconfig.h
base/plot_pdf_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/plot_pdf_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
base/plot_pdf_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/plot_pdf_prof.o: ../include/base/mat.h ../include/base/array.h
base/plot_pdf_prof.o: ../include/base/converters.h ../include/base/itfile.h
base/plot_pdf_prof.o: ../include/base/binfile.h ../include/base/machdep.h
base/fix_base_prof.o: ../include/base/fix_base.h ../include/base/stat.h
base/fix_base_prof.o: ../include/base/vec.h ../include/itconfig.h
base/fix_base_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/fix_base_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fix_base_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_base_prof.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_base_prof.o: ../include/base/converters.h ../include/base/specmat.h
base/fix_base_prof.o: ../include/base/sort.h
base/fix_prof.o: ../include/base/fix.h ../include/base/fix_base.h
base/fix_prof.o: ../include/base/stat.h ../include/base/vec.h
base/fix_prof.o: ../include/itconfig.h ../include/base/binary.h
base/fix_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/fix_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/fix_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/fix_prof.o: ../include/base/matfunc.h ../include/base/converters.h
base/fix_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_prof.o: ../include/base/fix_factory.h
base/fixed_prof.o: ../include/base/fixed.h ../include/base/fix.h
base/fixed_prof.o: ../include/base/fix_base.h ../include/base/stat.h
base/fixed_prof.o: ../include/base/vec.h ../include/itconfig.h
base/fixed_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/fixed_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fixed_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fixed_prof.o: ../include/base/mat.h ../include/base/matfunc.h
base/fixed_prof.o: ../include/base/converters.h ../include/base/specmat.h
base/fixed_prof.o: ../include/base/sort.h ../include/base/fix_factory.h
base/cfix_prof.o: ../include/base/cfix.h ../include/base/fix_base.h
base/cfix_prof.o: ../include/base/stat.h ../include/base/vec.h
base/cfix_prof.o: ../include/itconfig.h ../include/base/binary.h
base/cfix_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/cfix_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/cfix_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/cfix_prof.o: ../include/base/matfunc.h ../include/base/converters.h
base/cfix_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/cfix_prof.o: ../include/base/fix_factory.h ../include/base/fix.h
base/cfixed_prof.o: ../include/base/cfixed.h ../include/base/fix.h
base/cfixed_prof.o: ../include/base/fix_base.h ../include/base/stat.h
base/cfixed_prof.o: ../include/base/vec.h ../include/itconfig.h
base/cfixed_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/cfixed_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
base/cfixed_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/cfixed_prof.o: ../include/base/mat.h ../include/base/matfunc.h
base/cfixed_prof.o: ../include/base/converters.h ../include/base/specmat.h
base/cfixed_prof.o: ../include/base/sort.h ../include/base/fix_factory.h
base/cfixed_prof.o: ../include/base/cfix.h
base/fix_factory_prof.o: ../include/base/fix_factory.h
base/fix_factory_prof.o: ../include/base/factory.h ../include/base/fix_base.h
base/fix_factory_prof.o: ../include/base/stat.h ../include/base/vec.h
base/fix_factory_prof.o: ../include/itconfig.h ../include/base/binary.h
base/fix_factory_prof.o: ../include/base/itassert.h
base/fix_factory_prof.o: ../include/base/scalfunc.h ../src/base/copy_vector.h
base/fix_factory_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/fix_factory_prof.o: ../include/base/matfunc.h
base/fix_factory_prof.o: ../include/base/converters.h
base/fix_factory_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_factory_prof.o: ../include/base/fix.h ../include/base/cfix.h
base/fix_operators_prof.o: ../include/base/fix_operators.h
base/fix_operators_prof.o: ../include/base/fix.h ../include/base/fix_base.h
base/fix_operators_prof.o: ../include/base/stat.h ../include/base/vec.h
base/fix_operators_prof.o: ../include/itconfig.h ../include/base/binary.h
base/fix_operators_prof.o: ../include/base/itassert.h
base/fix_operators_prof.o: ../include/base/scalfunc.h
base/fix_operators_prof.o: ../include/base/factory.h
base/fix_operators_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_operators_prof.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_operators_prof.o: ../include/base/converters.h
base/fix_operators_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_operators_prof.o: ../include/base/fix_factory.h
base/fix_operators_prof.o: ../include/base/cfix.h
base/fix_operators_prof.o: ../include/base/fix_functions.h
base/fix_operators_prof.o: ../include/base/array.h
base/fix_functions_prof.o: ../include/base/fix_functions.h
base/fix_functions_prof.o: ../include/base/fix.h ../include/base/fix_base.h
base/fix_functions_prof.o: ../include/base/stat.h ../include/base/vec.h
base/fix_functions_prof.o: ../include/itconfig.h ../include/base/binary.h
base/fix_functions_prof.o: ../include/base/itassert.h
base/fix_functions_prof.o: ../include/base/scalfunc.h
base/fix_functions_prof.o: ../include/base/factory.h
base/fix_functions_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_functions_prof.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_functions_prof.o: ../include/base/converters.h
base/fix_functions_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_functions_prof.o: ../include/base/fix_factory.h
base/fix_functions_prof.o: ../include/base/cfix.h ../include/base/array.h
base/fastica_prof.o: ../include/base/fastica.h ../include/base/matfunc.h
base/fastica_prof.o: ../include/base/vec.h ../include/itconfig.h
base/fastica_prof.o: ../include/base/binary.h ../include/base/itassert.h
base/fastica_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fastica_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fastica_prof.o: ../include/base/mat.h ../include/base/converters.h
base/fastica_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/fastica_prof.o: ../include/base/svec.h ../include/base/stat.h
base/fastica_prof.o: ../include/base/sigfun.h ../include/base/transforms.h
base/fastica_prof.o: ../include/base/elmatfunc.h
base/fastica_prof.o: ../include/base/help_functions.h ../include/base/eigen.h
base/fastica_prof.o: ../include/base/svd.h ../include/base/random.h
base/fastica_prof.o: ../include/base/operators.h
base/stat_prof.o: ../include/base/stat.h ../include/base/vec.h
base/stat_prof.o: ../include/itconfig.h ../include/base/binary.h
base/stat_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/stat_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
base/stat_prof.o: ../include/base/cblas.h ../include/base/mat.h
base/stat_prof.o: ../include/base/matfunc.h ../include/base/converters.h
base/stat_prof.o: ../include/base/specmat.h ../include/base/sort.h
base/stat_prof.o: ../include/base/svd.h ../include/base/elmatfunc.h
base/stat_prof.o: ../include/base/help_functions.h
base/integration_prof.o: ../include/base/integration.h ../include/itconfig.h
base/integration_prof.o: ../include/base/vec.h ../include/base/binary.h
base/integration_prof.o: ../include/base/itassert.h
base/integration_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
base/integration_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/integration_prof.o: ../include/base/mat.h ../include/base/specmat.h
base/integration_prof.o: ../include/base/converters.h
base/integration_prof.o: ../include/base/matfunc.h ../include/base/sort.h
base/integration_prof.o: ../include/base/help_functions.h
base/bessel/airy_prof.o: ../src/base/bessel/bessel_internal.h
base/bessel/i0_prof.o: ../src/base/bessel/bessel_internal.h
base/bessel/i1_prof.o: ../src/base/bessel/bessel_internal.h
base/bessel/iv_prof.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/iv_prof.o: ../include/base/scalfunc.h
base/bessel/iv_prof.o: ../src/base/bessel/bessel_internal.h
base/bessel/jv_prof.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/jv_prof.o: ../include/base/scalfunc.h
base/bessel/jv_prof.o: ../src/base/bessel/bessel_internal.h
base/bessel/kn_prof.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/kn_prof.o: ../src/base/bessel/bessel_internal.h
base/bessel/k0_prof.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/k0_prof.o: ../src/base/bessel/bessel_internal.h
base/bessel/k1_prof.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/k1_prof.o: ../src/base/bessel/bessel_internal.h
base/bessel/polevl_prof.o: ../src/base/bessel/bessel_internal.h
base/bessel/chbevl_prof.o: ../src/base/bessel/bessel_internal.h
base/bessel/hyperg_prof.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/hyperg_prof.o: ../include/base/scalfunc.h
base/bessel/hyperg_prof.o: ../src/base/bessel/bessel_internal.h
base/bessel/struve_prof.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/struve_prof.o: ../include/base/scalfunc.h
base/bessel/struve_prof.o: ../src/base/bessel/bessel_internal.h
comm/bch_prof.o: ../include/comm/bch.h ../include/comm/galois.h
comm/bch_prof.o: ../include/base/vec.h ../include/itconfig.h
comm/bch_prof.o: ../include/base/binary.h ../include/base/itassert.h
comm/bch_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/bch_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/bch_prof.o: ../include/base/mat.h ../include/base/specmat.h
comm/bch_prof.o: ../include/base/converters.h ../include/base/array.h
comm/channel_prof.o: ../include/comm/channel.h ../include/base/vec.h
comm/channel_prof.o: ../include/itconfig.h ../include/base/binary.h
comm/channel_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/channel_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/channel_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/channel_prof.o: ../include/base/random.h ../include/base/operators.h
comm/channel_prof.o: ../include/base/converters.h ../include/base/array.h
comm/channel_prof.o: ../include/base/filter.h ../include/base/matfunc.h
comm/channel_prof.o: ../include/base/specmat.h ../include/base/sort.h
comm/channel_prof.o: ../include/base/stat.h ../include/base/elmatfunc.h
comm/channel_prof.o: ../include/base/help_functions.h
comm/channel_prof.o: ../include/base/transforms.h ../include/base/bessel.h
comm/commfunc_prof.o: ../include/comm/commfunc.h ../include/base/mat.h
comm/commfunc_prof.o: ../include/itconfig.h ../include/base/itassert.h
comm/commfunc_prof.o: ../include/base/binary.h ../include/base/scalfunc.h
comm/commfunc_prof.o: ../include/base/factory.h ../include/base/vec.h
comm/commfunc_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/commfunc_prof.o: ../include/base/specmat.h ../include/base/converters.h
comm/commfunc_prof.o: ../include/base/matfunc.h ../include/base/sort.h
comm/convcode_prof.o: ../include/comm/convcode.h ../include/base/vec.h
comm/convcode_prof.o: ../include/itconfig.h ../include/base/binary.h
comm/convcode_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/convcode_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/convcode_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/convcode_prof.o: ../include/base/array.h ../include/base/stat.h
comm/convcode_prof.o: ../include/base/matfunc.h ../include/base/converters.h
comm/convcode_prof.o: ../include/base/specmat.h ../include/base/sort.h
comm/punct_convcode_prof.o: ../include/comm/punct_convcode.h
comm/punct_convcode_prof.o: ../include/comm/convcode.h ../include/base/vec.h
comm/punct_convcode_prof.o: ../include/itconfig.h ../include/base/binary.h
comm/punct_convcode_prof.o: ../include/base/itassert.h
comm/punct_convcode_prof.o: ../include/base/scalfunc.h
comm/punct_convcode_prof.o: ../include/base/factory.h
comm/punct_convcode_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/punct_convcode_prof.o: ../include/base/mat.h ../include/base/array.h
comm/punct_convcode_prof.o: ../include/base/matfunc.h
comm/punct_convcode_prof.o: ../include/base/converters.h
comm/punct_convcode_prof.o: ../include/base/specmat.h ../include/base/sort.h
comm/galois_prof.o: ../include/comm/galois.h ../include/base/vec.h
comm/galois_prof.o: ../include/itconfig.h ../include/base/binary.h
comm/galois_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/galois_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/galois_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/galois_prof.o: ../include/base/specmat.h ../include/base/converters.h
comm/galois_prof.o: ../include/base/array.h
comm/hammcode_prof.o: ../include/base/binary.h ../include/base/itassert.h
comm/hammcode_prof.o: ../include/itconfig.h ../include/base/scalfunc.h
comm/hammcode_prof.o: ../include/base/converters.h ../include/base/vec.h
comm/hammcode_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/hammcode_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/hammcode_prof.o: ../include/base/matfunc.h ../include/base/specmat.h
comm/hammcode_prof.o: ../include/base/sort.h ../include/comm/hammcode.h
comm/interleave_prof.o: ../include/comm/interleave.h ../include/base/binary.h
comm/interleave_prof.o: ../include/base/itassert.h ../include/itconfig.h
comm/interleave_prof.o: ../include/base/matfunc.h ../include/base/vec.h
comm/interleave_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/interleave_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/interleave_prof.o: ../include/base/mat.h ../include/base/converters.h
comm/interleave_prof.o: ../include/base/specmat.h ../include/base/sort.h
comm/interleave_prof.o: ../include/base/random.h ../include/base/operators.h
comm/modulator_prof.o: ../include/base/binary.h ../include/base/itassert.h
comm/modulator_prof.o: ../include/itconfig.h ../include/base/matfunc.h
comm/modulator_prof.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/modulator_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/modulator_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/modulator_prof.o: ../include/base/converters.h ../include/base/specmat.h
comm/modulator_prof.o: ../include/base/sort.h ../include/comm/modulator.h
comm/modulator_prof.o: ../include/comm/commfunc.h
comm/reedsolomon_prof.o: ../include/base/binary.h ../include/base/itassert.h
comm/reedsolomon_prof.o: ../include/itconfig.h ../include/comm/reedsolomon.h
comm/reedsolomon_prof.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/reedsolomon_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/reedsolomon_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/reedsolomon_prof.o: ../include/comm/galois.h ../include/base/specmat.h
comm/reedsolomon_prof.o: ../include/base/converters.h ../include/base/array.h
comm/spread_prof.o: ../include/base/binary.h ../include/base/itassert.h
comm/spread_prof.o: ../include/itconfig.h ../include/base/elmatfunc.h
comm/spread_prof.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/spread_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/spread_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/spread_prof.o: ../include/base/help_functions.h
comm/spread_prof.o: ../include/base/converters.h ../include/base/stat.h
comm/spread_prof.o: ../include/base/matfunc.h ../include/base/specmat.h
comm/spread_prof.o: ../include/base/sort.h ../include/base/fastmath.h
comm/spread_prof.o: ../include/base/operators.h ../include/comm/spread.h
comm/egolay_prof.o: ../include/base/specmat.h ../include/base/vec.h
comm/egolay_prof.o: ../include/itconfig.h ../include/base/binary.h
comm/egolay_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/egolay_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/egolay_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/egolay_prof.o: ../include/base/converters.h ../include/comm/egolay.h
comm/egolay_prof.o: ../include/comm/commfunc.h
comm/error_counters_prof.o: ../include/itconfig.h ../include/base/binary.h
comm/error_counters_prof.o: ../include/base/itassert.h
comm/error_counters_prof.o: ../include/base/matfunc.h ../include/base/vec.h
comm/error_counters_prof.o: ../include/base/scalfunc.h
comm/error_counters_prof.o: ../include/base/factory.h
comm/error_counters_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/error_counters_prof.o: ../include/base/mat.h
comm/error_counters_prof.o: ../include/base/converters.h
comm/error_counters_prof.o: ../include/base/specmat.h ../include/base/sort.h
comm/error_counters_prof.o: ../include/comm/error_counters.h
comm/sequence_prof.o: ../include/base/itassert.h ../include/itconfig.h
comm/sequence_prof.o: ../include/comm/sequence.h ../include/base/vec.h
comm/sequence_prof.o: ../include/base/binary.h ../include/base/scalfunc.h
comm/sequence_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/sequence_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/sequence_prof.o: ../include/base/specmat.h ../include/base/converters.h
comm/ofdm_prof.o: ../include/comm/ofdm.h ../include/base/vec.h
comm/ofdm_prof.o: ../include/itconfig.h ../include/base/binary.h
comm/ofdm_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/ofdm_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/ofdm_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/ofdm_prof.o: ../include/base/specmat.h ../include/base/converters.h
comm/ofdm_prof.o: ../include/base/transforms.h ../include/base/operators.h
comm/rec_syst_conv_code_prof.o: ../include/comm/rec_syst_conv_code.h
comm/rec_syst_conv_code_prof.o: ../include/base/vec.h ../include/itconfig.h
comm/rec_syst_conv_code_prof.o: ../include/base/binary.h
comm/rec_syst_conv_code_prof.o: ../include/base/itassert.h
comm/rec_syst_conv_code_prof.o: ../include/base/scalfunc.h
comm/rec_syst_conv_code_prof.o: ../include/base/factory.h
comm/rec_syst_conv_code_prof.o: ../src/base/copy_vector.h
comm/rec_syst_conv_code_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/rec_syst_conv_code_prof.o: ../include/base/specmat.h
comm/rec_syst_conv_code_prof.o: ../include/base/converters.h
comm/rec_syst_conv_code_prof.o: ../include/base/matfunc.h
comm/rec_syst_conv_code_prof.o: ../include/base/sort.h
comm/rec_syst_conv_code_prof.o: ../include/comm/convcode.h
comm/rec_syst_conv_code_prof.o: ../include/base/array.h
comm/turbo_prof.o: ../include/comm/turbo.h ../include/base/vec.h
comm/turbo_prof.o: ../include/itconfig.h ../include/base/binary.h
comm/turbo_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/turbo_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/turbo_prof.o: ../include/base/cblas.h ../include/base/mat.h
comm/turbo_prof.o: ../include/base/matfunc.h ../include/base/converters.h
comm/turbo_prof.o: ../include/base/specmat.h ../include/base/sort.h
comm/turbo_prof.o: ../include/base/random.h ../include/base/operators.h
comm/turbo_prof.o: ../include/comm/rec_syst_conv_code.h
comm/turbo_prof.o: ../include/comm/convcode.h ../include/base/array.h
comm/turbo_prof.o: ../include/comm/interleave.h
comm/pulse_shape_prof.o: ../include/comm/pulse_shape.h
comm/pulse_shape_prof.o: ../include/base/matfunc.h ../include/base/vec.h
comm/pulse_shape_prof.o: ../include/itconfig.h ../include/base/binary.h
comm/pulse_shape_prof.o: ../include/base/itassert.h
comm/pulse_shape_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/pulse_shape_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/pulse_shape_prof.o: ../include/base/mat.h ../include/base/converters.h
comm/pulse_shape_prof.o: ../include/base/specmat.h ../include/base/sort.h
comm/pulse_shape_prof.o: ../include/base/filter.h
comm/crc_prof.o: ../include/base/vec.h ../include/itconfig.h
comm/crc_prof.o: ../include/base/binary.h ../include/base/itassert.h
comm/crc_prof.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/crc_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/crc_prof.o: ../include/base/mat.h ../include/base/specmat.h
comm/crc_prof.o: ../include/base/converters.h ../include/base/matfunc.h
comm/crc_prof.o: ../include/base/sort.h ../include/comm/crc.h
srccode/audiofile_prof.o: ../include/srccode/audiofile.h
srccode/audiofile_prof.o: ../include/itconfig.h ../include/base/vec.h
srccode/audiofile_prof.o: ../include/base/binary.h ../include/base/itassert.h
srccode/audiofile_prof.o: ../include/base/scalfunc.h
srccode/audiofile_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/audiofile_prof.o: ../include/base/cblas.h ../include/base/mat.h
srccode/audiofile_prof.o: ../include/base/machdep.h
srccode/pnm_prof.o: ../include/base/itassert.h ../include/itconfig.h
srccode/pnm_prof.o: ../include/srccode/pnm.h ../include/base/mat.h
srccode/pnm_prof.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/pnm_prof.o: ../include/base/factory.h ../include/base/vec.h
srccode/pnm_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
srccode/lpcfunc_prof.o: ../include/srccode/lpcfunc.h ../include/base/vec.h
srccode/lpcfunc_prof.o: ../include/itconfig.h ../include/base/binary.h
srccode/lpcfunc_prof.o: ../include/base/itassert.h ../include/base/scalfunc.h
srccode/lpcfunc_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/lpcfunc_prof.o: ../include/base/cblas.h ../include/base/mat.h
srccode/lpcfunc_prof.o: ../include/base/stat.h ../include/base/matfunc.h
srccode/lpcfunc_prof.o: ../include/base/converters.h
srccode/lpcfunc_prof.o: ../include/base/specmat.h ../include/base/sort.h
srccode/vq_prof.o: ../include/srccode/vq.h ../include/itconfig.h
srccode/vq_prof.o: ../include/base/itassert.h ../include/base/vec.h
srccode/vq_prof.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/vq_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/vq_prof.o: ../include/base/cblas.h ../include/base/mat.h
srccode/vq_prof.o: ../include/base/elmatfunc.h
srccode/vq_prof.o: ../include/base/help_functions.h
srccode/vq_prof.o: ../include/base/converters.h ../include/base/array.h
srccode/vq_prof.o: ../include/base/matfunc.h ../include/base/specmat.h
srccode/vq_prof.o: ../include/base/sort.h
srccode/vqtrain_prof.o: ../include/srccode/vqtrain.h ../include/base/mat.h
srccode/vqtrain_prof.o: ../include/itconfig.h ../include/base/itassert.h
srccode/vqtrain_prof.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/vqtrain_prof.o: ../include/base/factory.h ../include/base/vec.h
srccode/vqtrain_prof.o: ../src/base/copy_vector.h ../include/base/cblas.h
srccode/vqtrain_prof.o: ../include/base/array.h ../include/base/random.h
srccode/vqtrain_prof.o: ../include/base/operators.h
srccode/vqtrain_prof.o: ../include/base/converters.h ../include/base/timing.h
srccode/vqtrain_prof.o: ../include/base/elmatfunc.h
srccode/vqtrain_prof.o: ../include/base/help_functions.h
srccode/vqtrain_prof.o: ../include/base/stat.h ../include/base/matfunc.h
srccode/vqtrain_prof.o: ../include/base/specmat.h ../include/base/sort.h
srccode/gmm_prof.o: ../include/base/random.h ../include/base/binary.h
srccode/gmm_prof.o: ../include/base/itassert.h ../include/itconfig.h
srccode/gmm_prof.o: ../include/base/vec.h ../include/base/scalfunc.h
srccode/gmm_prof.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/gmm_prof.o: ../include/base/cblas.h ../include/base/mat.h
srccode/gmm_prof.o: ../include/base/operators.h ../include/base/converters.h
srccode/gmm_prof.o: ../include/base/timing.h ../include/srccode/vqtrain.h
srccode/gmm_prof.o: ../include/base/array.h ../include/base/matfunc.h
srccode/gmm_prof.o: ../include/base/specmat.h ../include/base/sort.h
srccode/gmm_prof.o: ../include/srccode/gmm.h ../include/base/elmatfunc.h
srccode/gmm_prof.o: ../include/base/help_functions.h
base/itassert_pic.o: ../include/base/itassert.h ../include/itconfig.h
base/timing_pic.o: ../include/base/timing.h
base/binfile_pic.o: ../include/base/binfile.h ../include/itconfig.h
base/binfile_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/binfile_pic.o: ../include/base/machdep.h
base/itfile_pic.o: ../include/base/itfile.h ../include/base/binary.h
base/itfile_pic.o: ../include/base/itassert.h ../include/itconfig.h
base/itfile_pic.o: ../include/base/mat.h ../include/base/scalfunc.h
base/itfile_pic.o: ../include/base/factory.h ../include/base/vec.h
base/itfile_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/itfile_pic.o: ../include/base/array.h ../include/base/binfile.h
base/itfile_pic.o: ../include/base/machdep.h
base/parser_pic.o: ../include/base/parser.h ../include/base/vec.h
base/parser_pic.o: ../include/itconfig.h ../include/base/binary.h
base/parser_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/parser_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/parser_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/parser_pic.o: ../include/base/array.h
base/itpp_version_pic.o: ../include/base/itpp_version.h ../include/itconfig.h
base/vec_pic.o: ../include/base/vec.h ../include/itconfig.h
base/vec_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/vec_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
base/vec_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/vec_pic.o: ../include/base/mat.h
base/mat_pic.o: ../include/base/mat.h ../include/itconfig.h
base/mat_pic.o: ../include/base/itassert.h ../include/base/binary.h
base/mat_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
base/mat_pic.o: ../include/base/vec.h ../src/base/copy_vector.h
base/mat_pic.o: ../include/base/cblas.h
base/svec_pic.o: ../include/base/svec.h ../include/itconfig.h
base/svec_pic.o: ../include/base/vec.h ../include/base/binary.h
base/svec_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/svec_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/svec_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/svec_pic.o: ../include/base/matfunc.h ../include/base/converters.h
base/svec_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/svec_pic.o: ../include/base/stat.h
base/smat_pic.o: ../include/base/smat.h ../include/itconfig.h
base/smat_pic.o: ../include/base/svec.h ../include/base/vec.h
base/smat_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/smat_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
base/smat_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/smat_pic.o: ../include/base/mat.h ../include/base/matfunc.h
base/smat_pic.o: ../include/base/converters.h ../include/base/specmat.h
base/smat_pic.o: ../include/base/sort.h ../include/base/stat.h
base/eigen_pic.o: ../include/base/eigen.h ../include/base/vec.h
base/eigen_pic.o: ../include/itconfig.h ../include/base/binary.h
base/eigen_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/eigen_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/eigen_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/eigen_pic.o: ../include/base/matfunc.h ../include/base/converters.h
base/eigen_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/eigen_pic.o: ../src/base/lapack.h
base/binary_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/binary_pic.o: ../include/itconfig.h
base/bessel_pic.o: ../include/base/bessel.h ../include/base/vec.h
base/bessel_pic.o: ../include/itconfig.h ../include/base/binary.h
base/bessel_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/bessel_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/bessel_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/bessel_pic.o: ../src/base/bessel/bessel_internal.h
base/converters_pic.o: ../include/base/converters.h ../include/base/vec.h
base/converters_pic.o: ../include/itconfig.h ../include/base/binary.h
base/converters_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/converters_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/converters_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/converters_pic.o: ../include/base/matfunc.h ../include/base/specmat.h
base/converters_pic.o: ../include/base/sort.h
base/scalfunc_pic.o: ../include/base/itassert.h ../include/itconfig.h
base/scalfunc_pic.o: ../include/base/vec.h ../include/base/binary.h
base/scalfunc_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
base/scalfunc_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/scalfunc_pic.o: ../include/base/mat.h
base/elmatfunc_pic.o: ../include/base/elmatfunc.h ../include/base/vec.h
base/elmatfunc_pic.o: ../include/itconfig.h ../include/base/binary.h
base/elmatfunc_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/elmatfunc_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/elmatfunc_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/elmatfunc_pic.o: ../include/base/help_functions.h
base/elmatfunc_pic.o: ../include/base/converters.h
base/matfunc_pic.o: ../include/base/matfunc.h ../include/base/vec.h
base/matfunc_pic.o: ../include/itconfig.h ../include/base/binary.h
base/matfunc_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/matfunc_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/matfunc_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/matfunc_pic.o: ../include/base/converters.h ../include/base/specmat.h
base/matfunc_pic.o: ../include/base/sort.h
base/specmat_pic.o: ../include/base/specmat.h ../include/base/vec.h
base/specmat_pic.o: ../include/itconfig.h ../include/base/binary.h
base/specmat_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/specmat_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/specmat_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/specmat_pic.o: ../include/base/converters.h ../include/base/elmatfunc.h
base/specmat_pic.o: ../include/base/help_functions.h
base/specmat_pic.o: ../include/base/matfunc.h ../include/base/sort.h
base/specmat_pic.o: ../include/base/stat.h
base/operators_pic.o: ../include/base/operators.h ../include/base/vec.h
base/operators_pic.o: ../include/itconfig.h ../include/base/binary.h
base/operators_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/operators_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/operators_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/operators_pic.o: ../include/base/converters.h
base/fastmath_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/fastmath_pic.o: ../include/itconfig.h ../include/base/fastmath.h
base/fastmath_pic.o: ../include/base/vec.h ../include/base/scalfunc.h
base/fastmath_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/fastmath_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/cholesky_pic.o: ../include/itconfig.h ../include/base/cholesky.h
base/cholesky_pic.o: ../include/base/vec.h ../include/base/binary.h
base/cholesky_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/cholesky_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/cholesky_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/cholesky_pic.o: ../src/base/lapack.h
base/lu_pic.o: ../include/base/lu.h ../include/base/vec.h
base/lu_pic.o: ../include/itconfig.h ../include/base/binary.h
base/lu_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/lu_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/lu_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/lu_pic.o: ../include/base/matfunc.h ../include/base/converters.h
base/lu_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/lu_pic.o: ../src/base/lapack.h
base/qr_pic.o: ../include/base/qr.h ../include/base/vec.h
base/qr_pic.o: ../include/itconfig.h ../include/base/binary.h
base/qr_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/qr_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/qr_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/qr_pic.o: ../include/base/matfunc.h ../include/base/converters.h
base/qr_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/qr_pic.o: ../src/base/lapack.h
base/det_pic.o: ../include/base/vec.h ../include/itconfig.h
base/det_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/det_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
base/det_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/det_pic.o: ../include/base/mat.h ../include/base/lu.h
base/inv_pic.o: ../include/base/inv.h ../include/base/mat.h
base/inv_pic.o: ../include/itconfig.h ../include/base/itassert.h
base/inv_pic.o: ../include/base/binary.h ../include/base/scalfunc.h
base/inv_pic.o: ../include/base/factory.h ../include/base/vec.h
base/inv_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/inv_pic.o: ../src/base/lapack.h
base/ls_solve_pic.o: ../include/itconfig.h ../include/base/ls_solve.h
base/ls_solve_pic.o: ../include/base/vec.h ../include/base/binary.h
base/ls_solve_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/ls_solve_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/ls_solve_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/ls_solve_pic.o: ../include/base/cholesky.h ../src/base/lapack.h
base/svd_pic.o: ../include/base/svd.h ../include/base/vec.h
base/svd_pic.o: ../include/itconfig.h ../include/base/binary.h
base/svd_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/svd_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/svd_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/svd_pic.o: ../include/base/matfunc.h ../include/base/converters.h
base/svd_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/svd_pic.o: ../include/base/elmatfunc.h ../include/base/help_functions.h
base/svd_pic.o: ../src/base/lapack.h
base/filter_pic.o: ../include/base/filter.h ../include/itconfig.h
base/filter_pic.o: ../include/base/vec.h ../include/base/binary.h
base/filter_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/filter_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/filter_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/filter_pic.o: ../include/base/matfunc.h ../include/base/converters.h
base/filter_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/sigfun_pic.o: ../include/base/elmatfunc.h ../include/base/vec.h
base/sigfun_pic.o: ../include/itconfig.h ../include/base/binary.h
base/sigfun_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/sigfun_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/sigfun_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/sigfun_pic.o: ../include/base/help_functions.h
base/sigfun_pic.o: ../include/base/converters.h ../include/base/matfunc.h
base/sigfun_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/sigfun_pic.o: ../include/base/stat.h ../include/base/operators.h
base/sigfun_pic.o: ../include/base/sigfun.h ../include/base/transforms.h
base/source_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/source_pic.o: ../include/itconfig.h ../include/base/matfunc.h
base/source_pic.o: ../include/base/vec.h ../include/base/scalfunc.h
base/source_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/source_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/source_pic.o: ../include/base/converters.h ../include/base/specmat.h
base/source_pic.o: ../include/base/sort.h ../include/base/source.h
base/transforms_pic.o: ../include/base/matfunc.h ../include/base/vec.h
base/transforms_pic.o: ../include/itconfig.h ../include/base/binary.h
base/transforms_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/transforms_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/transforms_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/transforms_pic.o: ../include/base/converters.h ../include/base/specmat.h
base/transforms_pic.o: ../include/base/sort.h ../include/base/transforms.h
base/transforms_pic.o: ../include/base/elmatfunc.h
base/transforms_pic.o: ../include/base/help_functions.h base/fftw3.h
base/random_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/random_pic.o: ../include/itconfig.h ../include/base/matfunc.h
base/random_pic.o: ../include/base/vec.h ../include/base/scalfunc.h
base/random_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/random_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/random_pic.o: ../include/base/converters.h ../include/base/specmat.h
base/random_pic.o: ../include/base/sort.h ../include/base/random.h
base/random_pic.o: ../include/base/operators.h
base/plot_pdf_pic.o: ../include/base/plot_pdf.h ../src/base/libharu.h
base/plot_pdf_pic.o: ../include/base/vec.h ../include/itconfig.h
base/plot_pdf_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/plot_pdf_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
base/plot_pdf_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/plot_pdf_pic.o: ../include/base/mat.h ../include/base/array.h
base/plot_pdf_pic.o: ../include/base/converters.h ../include/base/itfile.h
base/plot_pdf_pic.o: ../include/base/binfile.h ../include/base/machdep.h
base/fix_base_pic.o: ../include/base/fix_base.h ../include/base/stat.h
base/fix_base_pic.o: ../include/base/vec.h ../include/itconfig.h
base/fix_base_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/fix_base_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fix_base_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_base_pic.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_base_pic.o: ../include/base/converters.h ../include/base/specmat.h
base/fix_base_pic.o: ../include/base/sort.h
base/fix_pic.o: ../include/base/fix.h ../include/base/fix_base.h
base/fix_pic.o: ../include/base/stat.h ../include/base/vec.h
base/fix_pic.o: ../include/itconfig.h ../include/base/binary.h
base/fix_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/fix_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/fix_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/fix_pic.o: ../include/base/matfunc.h ../include/base/converters.h
base/fix_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_pic.o: ../include/base/fix_factory.h
base/fixed_pic.o: ../include/base/fixed.h ../include/base/fix.h
base/fixed_pic.o: ../include/base/fix_base.h ../include/base/stat.h
base/fixed_pic.o: ../include/base/vec.h ../include/itconfig.h
base/fixed_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/fixed_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fixed_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fixed_pic.o: ../include/base/mat.h ../include/base/matfunc.h
base/fixed_pic.o: ../include/base/converters.h ../include/base/specmat.h
base/fixed_pic.o: ../include/base/sort.h ../include/base/fix_factory.h
base/cfix_pic.o: ../include/base/cfix.h ../include/base/fix_base.h
base/cfix_pic.o: ../include/base/stat.h ../include/base/vec.h
base/cfix_pic.o: ../include/itconfig.h ../include/base/binary.h
base/cfix_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/cfix_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/cfix_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/cfix_pic.o: ../include/base/matfunc.h ../include/base/converters.h
base/cfix_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/cfix_pic.o: ../include/base/fix_factory.h ../include/base/fix.h
base/cfixed_pic.o: ../include/base/cfixed.h ../include/base/fix.h
base/cfixed_pic.o: ../include/base/fix_base.h ../include/base/stat.h
base/cfixed_pic.o: ../include/base/vec.h ../include/itconfig.h
base/cfixed_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/cfixed_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
base/cfixed_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/cfixed_pic.o: ../include/base/mat.h ../include/base/matfunc.h
base/cfixed_pic.o: ../include/base/converters.h ../include/base/specmat.h
base/cfixed_pic.o: ../include/base/sort.h ../include/base/fix_factory.h
base/cfixed_pic.o: ../include/base/cfix.h
base/fix_factory_pic.o: ../include/base/fix_factory.h
base/fix_factory_pic.o: ../include/base/factory.h ../include/base/fix_base.h
base/fix_factory_pic.o: ../include/base/stat.h ../include/base/vec.h
base/fix_factory_pic.o: ../include/itconfig.h ../include/base/binary.h
base/fix_factory_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/fix_factory_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fix_factory_pic.o: ../include/base/mat.h ../include/base/matfunc.h
base/fix_factory_pic.o: ../include/base/converters.h
base/fix_factory_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_factory_pic.o: ../include/base/fix.h ../include/base/cfix.h
base/fix_operators_pic.o: ../include/base/fix_operators.h
base/fix_operators_pic.o: ../include/base/fix.h ../include/base/fix_base.h
base/fix_operators_pic.o: ../include/base/stat.h ../include/base/vec.h
base/fix_operators_pic.o: ../include/itconfig.h ../include/base/binary.h
base/fix_operators_pic.o: ../include/base/itassert.h
base/fix_operators_pic.o: ../include/base/scalfunc.h
base/fix_operators_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/fix_operators_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/fix_operators_pic.o: ../include/base/matfunc.h
base/fix_operators_pic.o: ../include/base/converters.h
base/fix_operators_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_operators_pic.o: ../include/base/fix_factory.h
base/fix_operators_pic.o: ../include/base/cfix.h
base/fix_operators_pic.o: ../include/base/fix_functions.h
base/fix_operators_pic.o: ../include/base/array.h
base/fix_functions_pic.o: ../include/base/fix_functions.h
base/fix_functions_pic.o: ../include/base/fix.h ../include/base/fix_base.h
base/fix_functions_pic.o: ../include/base/stat.h ../include/base/vec.h
base/fix_functions_pic.o: ../include/itconfig.h ../include/base/binary.h
base/fix_functions_pic.o: ../include/base/itassert.h
base/fix_functions_pic.o: ../include/base/scalfunc.h
base/fix_functions_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/fix_functions_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/fix_functions_pic.o: ../include/base/matfunc.h
base/fix_functions_pic.o: ../include/base/converters.h
base/fix_functions_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/fix_functions_pic.o: ../include/base/fix_factory.h
base/fix_functions_pic.o: ../include/base/cfix.h ../include/base/array.h
base/fastica_pic.o: ../include/base/fastica.h ../include/base/matfunc.h
base/fastica_pic.o: ../include/base/vec.h ../include/itconfig.h
base/fastica_pic.o: ../include/base/binary.h ../include/base/itassert.h
base/fastica_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
base/fastica_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
base/fastica_pic.o: ../include/base/mat.h ../include/base/converters.h
base/fastica_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/fastica_pic.o: ../include/base/svec.h ../include/base/stat.h
base/fastica_pic.o: ../include/base/sigfun.h ../include/base/transforms.h
base/fastica_pic.o: ../include/base/elmatfunc.h
base/fastica_pic.o: ../include/base/help_functions.h ../include/base/eigen.h
base/fastica_pic.o: ../include/base/svd.h ../include/base/random.h
base/fastica_pic.o: ../include/base/operators.h
base/stat_pic.o: ../include/base/stat.h ../include/base/vec.h
base/stat_pic.o: ../include/itconfig.h ../include/base/binary.h
base/stat_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/stat_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/stat_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/stat_pic.o: ../include/base/matfunc.h ../include/base/converters.h
base/stat_pic.o: ../include/base/specmat.h ../include/base/sort.h
base/stat_pic.o: ../include/base/svd.h ../include/base/elmatfunc.h
base/stat_pic.o: ../include/base/help_functions.h
base/integration_pic.o: ../include/base/integration.h ../include/itconfig.h
base/integration_pic.o: ../include/base/vec.h ../include/base/binary.h
base/integration_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
base/integration_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
base/integration_pic.o: ../include/base/cblas.h ../include/base/mat.h
base/integration_pic.o: ../include/base/specmat.h
base/integration_pic.o: ../include/base/converters.h
base/integration_pic.o: ../include/base/matfunc.h ../include/base/sort.h
base/integration_pic.o: ../include/base/help_functions.h
base/bessel/airy_pic.o: ../src/base/bessel/bessel_internal.h
base/bessel/i0_pic.o: ../src/base/bessel/bessel_internal.h
base/bessel/i1_pic.o: ../src/base/bessel/bessel_internal.h
base/bessel/iv_pic.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/iv_pic.o: ../include/base/scalfunc.h
base/bessel/iv_pic.o: ../src/base/bessel/bessel_internal.h
base/bessel/jv_pic.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/jv_pic.o: ../include/base/scalfunc.h
base/bessel/jv_pic.o: ../src/base/bessel/bessel_internal.h
base/bessel/kn_pic.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/kn_pic.o: ../src/base/bessel/bessel_internal.h
base/bessel/k0_pic.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/k0_pic.o: ../src/base/bessel/bessel_internal.h
base/bessel/k1_pic.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/k1_pic.o: ../src/base/bessel/bessel_internal.h
base/bessel/polevl_pic.o: ../src/base/bessel/bessel_internal.h
base/bessel/chbevl_pic.o: ../src/base/bessel/bessel_internal.h
base/bessel/hyperg_pic.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/hyperg_pic.o: ../include/base/scalfunc.h
base/bessel/hyperg_pic.o: ../src/base/bessel/bessel_internal.h
base/bessel/struve_pic.o: ../include/base/itassert.h ../include/itconfig.h
base/bessel/struve_pic.o: ../include/base/scalfunc.h
base/bessel/struve_pic.o: ../src/base/bessel/bessel_internal.h
comm/bch_pic.o: ../include/comm/bch.h ../include/comm/galois.h
comm/bch_pic.o: ../include/base/vec.h ../include/itconfig.h
comm/bch_pic.o: ../include/base/binary.h ../include/base/itassert.h
comm/bch_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/bch_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/bch_pic.o: ../include/base/mat.h ../include/base/specmat.h
comm/bch_pic.o: ../include/base/converters.h ../include/base/array.h
comm/channel_pic.o: ../include/comm/channel.h ../include/base/vec.h
comm/channel_pic.o: ../include/itconfig.h ../include/base/binary.h
comm/channel_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/channel_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/channel_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/channel_pic.o: ../include/base/random.h ../include/base/operators.h
comm/channel_pic.o: ../include/base/converters.h ../include/base/array.h
comm/channel_pic.o: ../include/base/filter.h ../include/base/matfunc.h
comm/channel_pic.o: ../include/base/specmat.h ../include/base/sort.h
comm/channel_pic.o: ../include/base/stat.h ../include/base/elmatfunc.h
comm/channel_pic.o: ../include/base/help_functions.h
comm/channel_pic.o: ../include/base/transforms.h ../include/base/bessel.h
comm/commfunc_pic.o: ../include/comm/commfunc.h ../include/base/mat.h
comm/commfunc_pic.o: ../include/itconfig.h ../include/base/itassert.h
comm/commfunc_pic.o: ../include/base/binary.h ../include/base/scalfunc.h
comm/commfunc_pic.o: ../include/base/factory.h ../include/base/vec.h
comm/commfunc_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/commfunc_pic.o: ../include/base/specmat.h ../include/base/converters.h
comm/commfunc_pic.o: ../include/base/matfunc.h ../include/base/sort.h
comm/convcode_pic.o: ../include/comm/convcode.h ../include/base/vec.h
comm/convcode_pic.o: ../include/itconfig.h ../include/base/binary.h
comm/convcode_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/convcode_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/convcode_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/convcode_pic.o: ../include/base/array.h ../include/base/stat.h
comm/convcode_pic.o: ../include/base/matfunc.h ../include/base/converters.h
comm/convcode_pic.o: ../include/base/specmat.h ../include/base/sort.h
comm/punct_convcode_pic.o: ../include/comm/punct_convcode.h
comm/punct_convcode_pic.o: ../include/comm/convcode.h ../include/base/vec.h
comm/punct_convcode_pic.o: ../include/itconfig.h ../include/base/binary.h
comm/punct_convcode_pic.o: ../include/base/itassert.h
comm/punct_convcode_pic.o: ../include/base/scalfunc.h
comm/punct_convcode_pic.o: ../include/base/factory.h
comm/punct_convcode_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/punct_convcode_pic.o: ../include/base/mat.h ../include/base/array.h
comm/punct_convcode_pic.o: ../include/base/matfunc.h
comm/punct_convcode_pic.o: ../include/base/converters.h
comm/punct_convcode_pic.o: ../include/base/specmat.h ../include/base/sort.h
comm/galois_pic.o: ../include/comm/galois.h ../include/base/vec.h
comm/galois_pic.o: ../include/itconfig.h ../include/base/binary.h
comm/galois_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/galois_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/galois_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/galois_pic.o: ../include/base/specmat.h ../include/base/converters.h
comm/galois_pic.o: ../include/base/array.h
comm/hammcode_pic.o: ../include/base/binary.h ../include/base/itassert.h
comm/hammcode_pic.o: ../include/itconfig.h ../include/base/scalfunc.h
comm/hammcode_pic.o: ../include/base/converters.h ../include/base/vec.h
comm/hammcode_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/hammcode_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/hammcode_pic.o: ../include/base/matfunc.h ../include/base/specmat.h
comm/hammcode_pic.o: ../include/base/sort.h ../include/comm/hammcode.h
comm/interleave_pic.o: ../include/comm/interleave.h ../include/base/binary.h
comm/interleave_pic.o: ../include/base/itassert.h ../include/itconfig.h
comm/interleave_pic.o: ../include/base/matfunc.h ../include/base/vec.h
comm/interleave_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/interleave_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/interleave_pic.o: ../include/base/mat.h ../include/base/converters.h
comm/interleave_pic.o: ../include/base/specmat.h ../include/base/sort.h
comm/interleave_pic.o: ../include/base/random.h ../include/base/operators.h
comm/modulator_pic.o: ../include/base/binary.h ../include/base/itassert.h
comm/modulator_pic.o: ../include/itconfig.h ../include/base/matfunc.h
comm/modulator_pic.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/modulator_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/modulator_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/modulator_pic.o: ../include/base/converters.h ../include/base/specmat.h
comm/modulator_pic.o: ../include/base/sort.h ../include/comm/modulator.h
comm/modulator_pic.o: ../include/comm/commfunc.h
comm/reedsolomon_pic.o: ../include/base/binary.h ../include/base/itassert.h
comm/reedsolomon_pic.o: ../include/itconfig.h ../include/comm/reedsolomon.h
comm/reedsolomon_pic.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/reedsolomon_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/reedsolomon_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/reedsolomon_pic.o: ../include/comm/galois.h ../include/base/specmat.h
comm/reedsolomon_pic.o: ../include/base/converters.h ../include/base/array.h
comm/spread_pic.o: ../include/base/binary.h ../include/base/itassert.h
comm/spread_pic.o: ../include/itconfig.h ../include/base/elmatfunc.h
comm/spread_pic.o: ../include/base/vec.h ../include/base/scalfunc.h
comm/spread_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/spread_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/spread_pic.o: ../include/base/help_functions.h
comm/spread_pic.o: ../include/base/converters.h ../include/base/stat.h
comm/spread_pic.o: ../include/base/matfunc.h ../include/base/specmat.h
comm/spread_pic.o: ../include/base/sort.h ../include/base/fastmath.h
comm/spread_pic.o: ../include/base/operators.h ../include/comm/spread.h
comm/egolay_pic.o: ../include/base/specmat.h ../include/base/vec.h
comm/egolay_pic.o: ../include/itconfig.h ../include/base/binary.h
comm/egolay_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/egolay_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/egolay_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/egolay_pic.o: ../include/base/converters.h ../include/comm/egolay.h
comm/egolay_pic.o: ../include/comm/commfunc.h
comm/error_counters_pic.o: ../include/itconfig.h ../include/base/binary.h
comm/error_counters_pic.o: ../include/base/itassert.h
comm/error_counters_pic.o: ../include/base/matfunc.h ../include/base/vec.h
comm/error_counters_pic.o: ../include/base/scalfunc.h
comm/error_counters_pic.o: ../include/base/factory.h
comm/error_counters_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/error_counters_pic.o: ../include/base/mat.h ../include/base/converters.h
comm/error_counters_pic.o: ../include/base/specmat.h ../include/base/sort.h
comm/error_counters_pic.o: ../include/comm/error_counters.h
comm/sequence_pic.o: ../include/base/itassert.h ../include/itconfig.h
comm/sequence_pic.o: ../include/comm/sequence.h ../include/base/vec.h
comm/sequence_pic.o: ../include/base/binary.h ../include/base/scalfunc.h
comm/sequence_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/sequence_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/sequence_pic.o: ../include/base/specmat.h ../include/base/converters.h
comm/ofdm_pic.o: ../include/comm/ofdm.h ../include/base/vec.h
comm/ofdm_pic.o: ../include/itconfig.h ../include/base/binary.h
comm/ofdm_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/ofdm_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/ofdm_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/ofdm_pic.o: ../include/base/specmat.h ../include/base/converters.h
comm/ofdm_pic.o: ../include/base/transforms.h ../include/base/operators.h
comm/rec_syst_conv_code_pic.o: ../include/comm/rec_syst_conv_code.h
comm/rec_syst_conv_code_pic.o: ../include/base/vec.h ../include/itconfig.h
comm/rec_syst_conv_code_pic.o: ../include/base/binary.h
comm/rec_syst_conv_code_pic.o: ../include/base/itassert.h
comm/rec_syst_conv_code_pic.o: ../include/base/scalfunc.h
comm/rec_syst_conv_code_pic.o: ../include/base/factory.h
comm/rec_syst_conv_code_pic.o: ../src/base/copy_vector.h
comm/rec_syst_conv_code_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/rec_syst_conv_code_pic.o: ../include/base/specmat.h
comm/rec_syst_conv_code_pic.o: ../include/base/converters.h
comm/rec_syst_conv_code_pic.o: ../include/base/matfunc.h
comm/rec_syst_conv_code_pic.o: ../include/base/sort.h
comm/rec_syst_conv_code_pic.o: ../include/comm/convcode.h
comm/rec_syst_conv_code_pic.o: ../include/base/array.h
comm/turbo_pic.o: ../include/comm/turbo.h ../include/base/vec.h
comm/turbo_pic.o: ../include/itconfig.h ../include/base/binary.h
comm/turbo_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/turbo_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/turbo_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/turbo_pic.o: ../include/base/matfunc.h ../include/base/converters.h
comm/turbo_pic.o: ../include/base/specmat.h ../include/base/sort.h
comm/turbo_pic.o: ../include/base/random.h ../include/base/operators.h
comm/turbo_pic.o: ../include/comm/rec_syst_conv_code.h
comm/turbo_pic.o: ../include/comm/convcode.h ../include/base/array.h
comm/turbo_pic.o: ../include/comm/interleave.h
comm/pulse_shape_pic.o: ../include/comm/pulse_shape.h
comm/pulse_shape_pic.o: ../include/base/matfunc.h ../include/base/vec.h
comm/pulse_shape_pic.o: ../include/itconfig.h ../include/base/binary.h
comm/pulse_shape_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
comm/pulse_shape_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
comm/pulse_shape_pic.o: ../include/base/cblas.h ../include/base/mat.h
comm/pulse_shape_pic.o: ../include/base/converters.h
comm/pulse_shape_pic.o: ../include/base/specmat.h ../include/base/sort.h
comm/pulse_shape_pic.o: ../include/base/filter.h
comm/crc_pic.o: ../include/base/vec.h ../include/itconfig.h
comm/crc_pic.o: ../include/base/binary.h ../include/base/itassert.h
comm/crc_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
comm/crc_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
comm/crc_pic.o: ../include/base/mat.h ../include/base/specmat.h
comm/crc_pic.o: ../include/base/converters.h ../include/base/matfunc.h
comm/crc_pic.o: ../include/base/sort.h ../include/comm/crc.h
srccode/audiofile_pic.o: ../include/srccode/audiofile.h ../include/itconfig.h
srccode/audiofile_pic.o: ../include/base/vec.h ../include/base/binary.h
srccode/audiofile_pic.o: ../include/base/itassert.h
srccode/audiofile_pic.o: ../include/base/scalfunc.h ../include/base/factory.h
srccode/audiofile_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
srccode/audiofile_pic.o: ../include/base/mat.h ../include/base/machdep.h
srccode/pnm_pic.o: ../include/base/itassert.h ../include/itconfig.h
srccode/pnm_pic.o: ../include/srccode/pnm.h ../include/base/mat.h
srccode/pnm_pic.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/pnm_pic.o: ../include/base/factory.h ../include/base/vec.h
srccode/pnm_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
srccode/lpcfunc_pic.o: ../include/srccode/lpcfunc.h ../include/base/vec.h
srccode/lpcfunc_pic.o: ../include/itconfig.h ../include/base/binary.h
srccode/lpcfunc_pic.o: ../include/base/itassert.h ../include/base/scalfunc.h
srccode/lpcfunc_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/lpcfunc_pic.o: ../include/base/cblas.h ../include/base/mat.h
srccode/lpcfunc_pic.o: ../include/base/stat.h ../include/base/matfunc.h
srccode/lpcfunc_pic.o: ../include/base/converters.h ../include/base/specmat.h
srccode/lpcfunc_pic.o: ../include/base/sort.h
srccode/vq_pic.o: ../include/srccode/vq.h ../include/itconfig.h
srccode/vq_pic.o: ../include/base/itassert.h ../include/base/vec.h
srccode/vq_pic.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/vq_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/vq_pic.o: ../include/base/cblas.h ../include/base/mat.h
srccode/vq_pic.o: ../include/base/elmatfunc.h
srccode/vq_pic.o: ../include/base/help_functions.h
srccode/vq_pic.o: ../include/base/converters.h ../include/base/array.h
srccode/vq_pic.o: ../include/base/matfunc.h ../include/base/specmat.h
srccode/vq_pic.o: ../include/base/sort.h
srccode/vqtrain_pic.o: ../include/srccode/vqtrain.h ../include/base/mat.h
srccode/vqtrain_pic.o: ../include/itconfig.h ../include/base/itassert.h
srccode/vqtrain_pic.o: ../include/base/binary.h ../include/base/scalfunc.h
srccode/vqtrain_pic.o: ../include/base/factory.h ../include/base/vec.h
srccode/vqtrain_pic.o: ../src/base/copy_vector.h ../include/base/cblas.h
srccode/vqtrain_pic.o: ../include/base/array.h ../include/base/random.h
srccode/vqtrain_pic.o: ../include/base/operators.h
srccode/vqtrain_pic.o: ../include/base/converters.h ../include/base/timing.h
srccode/vqtrain_pic.o: ../include/base/elmatfunc.h
srccode/vqtrain_pic.o: ../include/base/help_functions.h
srccode/vqtrain_pic.o: ../include/base/stat.h ../include/base/matfunc.h
srccode/vqtrain_pic.o: ../include/base/specmat.h ../include/base/sort.h
srccode/gmm_pic.o: ../include/base/random.h ../include/base/binary.h
srccode/gmm_pic.o: ../include/base/itassert.h ../include/itconfig.h
srccode/gmm_pic.o: ../include/base/vec.h ../include/base/scalfunc.h
srccode/gmm_pic.o: ../include/base/factory.h ../src/base/copy_vector.h
srccode/gmm_pic.o: ../include/base/cblas.h ../include/base/mat.h
srccode/gmm_pic.o: ../include/base/operators.h ../include/base/converters.h
srccode/gmm_pic.o: ../include/base/timing.h ../include/srccode/vqtrain.h
srccode/gmm_pic.o: ../include/base/array.h ../include/base/matfunc.h
srccode/gmm_pic.o: ../include/base/specmat.h ../include/base/sort.h
srccode/gmm_pic.o: ../include/srccode/gmm.h ../include/base/elmatfunc.h
srccode/gmm_pic.o: ../include/base/help_functions.h
syntax highlighted by Code2HTML, v. 0.9.1