diff --git a/Makefile.am b/Makefile.am index 035c998..f679d14 100644 --- a/Makefile.am +++ b/Makefile.am @@ -33,9 +33,9 @@ SUFFIXES = .scm .go .scm.go: $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_WARNINGS) -o "$@" "$<" -SOURCES = gib-gab-gob/actors.go \ +SOURCES = gib-gab-gob/game.go \ gib-gab-gob/rps.scm \ - gib-gab-gob/actors.scm \ + gib-gab-gob/game.scm \ gib-gab-gob/rps.go TESTS = diff --git a/gib-gab-gob/actors.scm b/gib-gab-gob/game.scm similarity index 98% rename from gib-gab-gob/actors.scm rename to gib-gab-gob/game.scm index 888ab24..859bfaf 100644 --- a/gib-gab-gob/actors.scm +++ b/gib-gab-gob/game.scm @@ -1,4 +1,4 @@ -(define-module (gib-gab-gob actors) +(define-module (gib-gab-gob game) #:use-module (gib-gab-gob rps) #:use-module (goblins) #:use-module (goblins vat) diff --git a/gib-gab-gob/rps.scm b/gib-gab-gob/rps.scm index 4d5564a..11262d6 100644 --- a/gib-gab-gob/rps.scm +++ b/gib-gab-gob/rps.scm @@ -1,5 +1,4 @@ (define-module (gib-gab-gob rps) - #:use-module (gib-gab-gob actors) #:use-module (ice-9 match) #:use-module (goblins) #:use-module (goblins actor-lib methods) diff --git a/hall.scm b/hall.scm index 4f45158..bad323d 100644 --- a/hall.scm +++ b/hall.scm @@ -16,9 +16,9 @@ (files (libraries ((directory "gib-gab-gob" - ((compiled-scheme-file "actors") + ((compiled-scheme-file "game") (scheme-file "rps") - (scheme-file "actors") + (scheme-file "game") (compiled-scheme-file "rps"))))) (tests ((directory "tests" ()))) (programs diff --git a/scripts/make-client.in b/scripts/make-client.in index 27a8c5d..b51cbfc 100644 --- a/scripts/make-client.in +++ b/scripts/make-client.in @@ -4,7 +4,7 @@ (use-modules (gib-gab-gob rps) - (gib-gab-gob actors)) + (gib-gab-gob game)) (apply make-client (cons ^ggg-controller (cdr (command-line)))) (while #t #f) ;; indefinitely diff --git a/scripts/make-host.in b/scripts/make-host.in index 6449c63..c5002e7 100644 --- a/scripts/make-host.in +++ b/scripts/make-host.in @@ -4,7 +4,7 @@ (use-modules (gib-gab-gob rps) - (gib-gab-gob actors)) + (gib-gab-gob game)) (make-host ^ggg-controller) (while #t #f) ;; indefinitely