diff options
author | Andy Wingo <wingo@pobox.com> | 2013-11-19 21:45:07 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-11-19 21:45:07 +0100 |
commit | 4cbc95f1507249d757391927da42feaaf969a60a (patch) | |
tree | dd5f0c29c77de3dba1dcbd587337f45c1e0f77c2 /libguile/Makefile.am | |
parent | c0a1a0b12d2e63c62ecdb82c570b5bb7faf637e1 (diff) |
Rename objcodes?.{scm,c,h} to loader.{scm,c,h}
* libguile/loader.c:
* libguile/loader.h: Rename from objcodes.[ch].
* module/system/vm/loader.scm: Rename from objcode.scm.
* libguile/Makefile.am:
* libguile/gsubr.c:
* libguile/init.c:
* libguile/procs.c:
* libguile/vm.c:
* module/Makefile.am:
* module/ice-9/eval-string.scm:
* module/language/rtl/spec.scm:
* module/system/base/target.scm:
* module/system/repl/command.scm:
* module/system/repl/common.scm:
* module/system/vm/debug.scm:
* module/system/vm/disassembler.scm:
* module/system/vm/objcode.scm:
* test-suite/tests/compiler.test:
* test-suite/tests/dwarf.test:
* test-suite/tests/rtl-compilation.test:
* test-suite/tests/rtl.test: Adapt.
Diffstat (limited to 'libguile/Makefile.am')
-rw-r--r-- | libguile/Makefile.am | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/libguile/Makefile.am b/libguile/Makefile.am index b2a9faf3a..273e1b6e4 100644 --- a/libguile/Makefile.am +++ b/libguile/Makefile.am @@ -169,13 +169,13 @@ libguile_@GUILE_EFFECTIVE_VERSION@_la_SOURCES = \ keywords.c \ list.c \ load.c \ + loader.c \ macros.c \ mallocs.c \ memoize.c \ modules.c \ null-threads.c \ numbers.c \ - objcodes.c \ objprop.c \ options.c \ pairs.c \ @@ -255,6 +255,7 @@ DOT_X_FILES = \ fluids.x \ foreign.x \ fports.x \ + frames.x \ gc-malloc.x \ gc.x \ gettext.x \ @@ -268,10 +269,12 @@ DOT_X_FILES = \ hooks.x \ i18n.x \ init.x \ + instructions.x \ ioext.x \ keywords.x \ list.x \ load.x \ + loader.x \ macros.x \ mallocs.x \ memoize.x \ @@ -284,6 +287,7 @@ DOT_X_FILES = \ print.x \ procprop.x \ procs.x \ + programs.x \ promises.x \ r6rs-ports.x \ random.x \ @@ -318,14 +322,12 @@ DOT_X_FILES = \ variable.x \ vectors.x \ version.x \ + vm.x \ vports.x \ weak-set.x \ weak-table.x \ weak-vector.x -# vm-related snarfs -DOT_X_FILES += frames.x instructions.x objcodes.x programs.x vm.x - EXTRA_DOT_X_FILES = @EXTRA_DOT_X_FILES@ DOT_DOC_FILES = \ @@ -577,6 +579,7 @@ modinclude_HEADERS = \ keywords.h \ list.h \ load.h \ + loader.h \ macros.h \ mallocs.h \ memoize.h \ @@ -584,7 +587,6 @@ modinclude_HEADERS = \ net_db.h \ null-threads.h \ numbers.h \ - objcodes.h \ objprop.h \ options.h \ pairs.h \ |