From a98cef7e6c42d40c8d77640030d3eb2697ae647b Mon Sep 17 00:00:00 2001 From: Keisuke Nishida Date: Tue, 22 Aug 2000 15:54:19 +0000 Subject: Initial revision --- Makefile.am | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 Makefile.am (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 000000000..e38d314b0 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,7 @@ +SUBDIRS = src vm doc test + +EXTRA_DIST = acconfig.h + +MAINTAINERCLEANFILES = COPYING INSTALL config.guess config.sub ltconfig \ + ltmain.sh Makefile.in aclocal.m4 config.h.in stamp-h.in \ + configure missing mkinstalldirs install-sh texinfo.tex -- cgit v1.2.1 From 17e90c5e25a7a2e453742044ee6a3fa5f27e9e5d Mon Sep 17 00:00:00 2001 From: Keisuke Nishida Date: Sun, 1 Apr 2001 05:03:41 +0000 Subject: New VM. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index e38d314b0..1b0e4dd45 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = src vm doc test +SUBDIRS = src doc module EXTRA_DIST = acconfig.h -- cgit v1.2.1 From 0b5f0e49a8b172544e2a7cb564c01c2ec439aaec Mon Sep 17 00:00:00 2001 From: Ludovic Courtes Date: Sat, 25 Jun 2005 03:13:56 +0000 Subject: * src/objcodes.c (make_objcode_by_mmap): Fixed the error type when the object file is too small. * doc/guile-vm.texi: Documented `make-closure'. Improved the documentation of `load-program'. * testsuite: New directory. * configure.in: Added `testsuite/Makefile' to `AC_OUTPUT'. * Makefile.am (SUBDIRS): Added `testsuite'. * src/vm_engine.h (VM_CHECK_OBJECT): New option. (CHECK_OBJECT): New macro. * src/vm_system.c (object-ref): Use VM_CHECK_OBJECT. * module/system/vm/assemble.scm (preprocess): Commented out the debugging code. * benchmark/lib.scm (do-loop): New procedure. git-archimport-id: lcourtes@laas.fr--2005-mobile/guile-vm--mobile--0.6--patch-2 --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 1b0e4dd45..feaaaa9d7 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,4 @@ -SUBDIRS = src doc module +SUBDIRS = src doc module testsuite EXTRA_DIST = acconfig.h -- cgit v1.2.1 From e274f1c232db823e7c8e875cec6c1709c1a68445 Mon Sep 17 00:00:00 2001 From: Ludovic Court`es Date: Tue, 10 Jan 2006 08:36:43 +0000 Subject: Fixed `autogen.sh' and removed `module' from the list of dirs to build. * autogen.sh: Fixed (call `libtoolize'). * Makefile.am (SUBDIRS): Removed `module' which doesn't build right now. git-archimport-id: lcourtes@laas.fr--2004-libre/guile-vm--revival--0.6--patch-16 --- Makefile.am | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index feaaaa9d7..e9069d36d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,7 @@ -SUBDIRS = src doc module testsuite +SUBDIRS = src doc testsuite + +# FIXME: The `module' directory is removed from `SUBDIRS' until it can +# actually be built. EXTRA_DIST = acconfig.h -- cgit v1.2.1 From 83dff6e55f8397219e81b3f66d7d47c46c14b1cb Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 13 May 2008 00:07:40 +0200 Subject: Update Makefile.am's; remove slib import * Makefile.am: * module/Makefile.am: * module/language/scheme/Makefile.am: * module/system/Makefile.am: * module/system/base/Makefile.am: * module/system/il/Makefile.am: * module/system/repl/Makefile.am: * module/system/vm/Makefile.am: Cleaned up to be more complete, if not completely working. * module/guile/slib.scm: * module/slib/: Removed the slib import; it's a bit out of place here, and bitrotten at that. --- Makefile.am | 1 + 1 file changed, 1 insertion(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index e9069d36d..1090cea7e 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,4 +1,5 @@ SUBDIRS = src doc testsuite +DIST_SUBDIRS = src module doc testsuite # FIXME: The `module' directory is removed from `SUBDIRS' until it can # actually be built. -- cgit v1.2.1 From 51f6b8f377fa7c3d57f40bd05f61adf4da6d10b1 Mon Sep 17 00:00:00 2001 From: Andy Wingo Date: Tue, 20 May 2008 12:54:14 +0200 Subject: distcheck works now * guilec.mk: New file, to be included when building .go files. * module/language/scheme/Makefile.am: * module/system/base/Makefile.am: * module/system/il/Makefile.am: * module/system/repl/Makefile.am: * module/system/vm/Makefile.am: Use guilec.mk. * module/system/base/compile.scm (compiled-file-name): Work on the basename of a file, so that we always create files in the directory where we run. Perhaps should add a -o option to guilec in the future. * Makefile.am: Actually recurse into module/ in a normal build. --- Makefile.am | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index 1090cea7e..3105af74b 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,10 +1,4 @@ -SUBDIRS = src doc testsuite -DIST_SUBDIRS = src module doc testsuite - -# FIXME: The `module' directory is removed from `SUBDIRS' until it can -# actually be built. - -EXTRA_DIST = acconfig.h +SUBDIRS = src module doc testsuite MAINTAINERCLEANFILES = COPYING INSTALL config.guess config.sub ltconfig \ ltmain.sh Makefile.in aclocal.m4 config.h.in stamp-h.in \ -- cgit v1.2.1