1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

move ice-9/ and oop/ under module/

Moved ice-9/ and oop/ under module/, with the idea being that we have
only scheme under module/. Adjusted configure.in and Makefile.am
appropriately. Put oop/ at the end of the compilation order.
This commit is contained in:
Andy Wingo 2008-11-01 12:44:21 +01:00
parent 5192c9e89b
commit 00d0489205
95 changed files with 8 additions and 8 deletions

View file

@ -24,9 +24,9 @@
# #
AUTOMAKE_OPTIONS = 1.10 AUTOMAKE_OPTIONS = 1.10
SUBDIRS = lib oop libguile guile-config guile-readline emacs \ SUBDIRS = lib libguile guile-config guile-readline emacs \
scripts srfi doc examples test-suite benchmark-suite lang am \ scripts srfi doc examples test-suite benchmark-suite lang am \
module ice-9 testsuite module testsuite
bin_SCRIPTS = guile-tools bin_SCRIPTS = guile-tools

View file

@ -1540,16 +1540,11 @@ AC_CONFIG_FILES([
examples/safe/Makefile examples/safe/Makefile
examples/scripts/Makefile examples/scripts/Makefile
guile-config/Makefile guile-config/Makefile
ice-9/Makefile
ice-9/debugger/Makefile
ice-9/debugging/Makefile
lang/Makefile lang/Makefile
lang/elisp/Makefile lang/elisp/Makefile
lang/elisp/internals/Makefile lang/elisp/internals/Makefile
lang/elisp/primitives/Makefile lang/elisp/primitives/Makefile
libguile/Makefile libguile/Makefile
oop/Makefile
oop/goops/Makefile
scripts/Makefile scripts/Makefile
srfi/Makefile srfi/Makefile
test-suite/Makefile test-suite/Makefile
@ -1562,6 +1557,11 @@ AC_CONFIG_FILES([
module/system/repl/Makefile module/system/repl/Makefile
module/language/Makefile module/language/Makefile
module/language/scheme/Makefile module/language/scheme/Makefile
module/ice-9/Makefile
module/ice-9/debugger/Makefile
module/ice-9/debugging/Makefile
module/oop/Makefile
module/oop/goops/Makefile
testsuite/Makefile testsuite/Makefile
]) ])

View file

@ -1 +1 @@
SUBDIRS = system language SUBDIRS = system language ice-9 oop