# HG changeset patch # User John W. Eaton # Date 1343782007 14400 # Node ID b62b0b85369c2f1d09be7be657f909364c2796fe # Parent 2cb76b2b8b299281a57c7e73767034d2dd982779 move more files to corefcn directory * bitfcns.cc, mappers.cc, sparse.cc, strfns.cc, syscalls.cc: Move to corefcn diretory. * src/Makefile.am (DIST_SRC): Remove bitfcns.cc, mappers.cc, sparse.cc, strfns.cc, and syscalls.cc from the list. * src/corefcn/module.mk (COREFCN_SRC): Add bitfcns.cc, mappers.cc, sparse.cc, strfns.cc, and syscalls.cc to the list diff --git a/src/Makefile.am b/src/Makefile.am --- a/src/Makefile.am +++ b/src/Makefile.am @@ -238,7 +238,6 @@ DIST_SRC = \ Cell.cc \ - bitfcns.cc \ c-file-ptr-stream.cc \ comment-list.cc \ cutils.c \ @@ -268,7 +267,6 @@ ls-oct-ascii.cc \ ls-oct-binary.cc \ ls-utils.cc \ - mappers.cc \ matherr.c \ mex.cc \ oct-fstrm.cc \ @@ -289,12 +287,9 @@ profiler.cc \ sighandlers.cc \ siglist.c \ - sparse.cc \ sparse-xdiv.cc \ sparse-xpow.cc \ - strfns.cc \ symtab.cc \ - syscalls.cc \ sysdep.cc \ token.cc \ toplev.cc \ diff --git a/src/bitfcns.cc b/src/corefcn/bitfcns.cc rename from src/bitfcns.cc rename to src/corefcn/bitfcns.cc diff --git a/src/mappers.cc b/src/corefcn/mappers.cc rename from src/mappers.cc rename to src/corefcn/mappers.cc diff --git a/src/corefcn/module.mk b/src/corefcn/module.mk --- a/src/corefcn/module.mk +++ b/src/corefcn/module.mk @@ -10,6 +10,7 @@ corefcn/balance.cc \ corefcn/besselj.cc \ corefcn/betainc.cc \ + corefcn/bitfcns.cc \ corefcn/bsxfun.cc \ corefcn/cellfun.cc \ corefcn/colloc.cc \ @@ -40,6 +41,7 @@ corefcn/lsode.cc \ corefcn/lu.cc \ corefcn/luinc.cc \ + corefcn/mappers.cc \ corefcn/matrix_type.cc \ corefcn/max.cc \ corefcn/md5sum.cc \ @@ -53,13 +55,16 @@ corefcn/rcond.cc \ corefcn/regexp.cc \ corefcn/schur.cc \ + corefcn/sparse.cc \ corefcn/spparms.cc \ corefcn/sqrtm.cc \ corefcn/str2double.cc \ corefcn/strfind.cc \ + corefcn/strfns.cc \ corefcn/sub2ind.cc \ corefcn/svd.cc \ corefcn/syl.cc \ + corefcn/syscalls.cc \ corefcn/time.cc \ corefcn/tril.cc \ corefcn/typecast.cc diff --git a/src/sparse.cc b/src/corefcn/sparse.cc rename from src/sparse.cc rename to src/corefcn/sparse.cc diff --git a/src/strfns.cc b/src/corefcn/strfns.cc rename from src/strfns.cc rename to src/corefcn/strfns.cc diff --git a/src/syscalls.cc b/src/corefcn/syscalls.cc rename from src/syscalls.cc rename to src/corefcn/syscalls.cc