From 461e88dd9276c7442805f6cf7512119d861994fd Mon Sep 17 00:00:00 2001 From: Vivianne Langdon Date: Sat, 18 Feb 2023 13:56:12 -0800 Subject: [PATCH] Clean up unused utils module --- Makefile.am | 5 ++--- gib-gab-gob/actors.scm | 1 - gib-gab-gob/utils.scm | 7 ------- hall.scm | 4 +++- 4 files changed, 5 insertions(+), 12 deletions(-) delete mode 100644 gib-gab-gob/utils.scm diff --git a/Makefile.am b/Makefile.am index bdfa508..9c0b744 100644 --- a/Makefile.am +++ b/Makefile.am @@ -33,12 +33,11 @@ SUFFIXES = .scm .go .scm.go: $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_WARNINGS) -o "$@" "$<" -SOURCES = gib-gab-gob/utils.scm \ - gib-gab-gob/rps.scm \ +SOURCES = gib-gab-gob/rps.scm \ gib-gab-gob/actors.scm \ gib-gab-gob/lib.scm -TESTS = +TESTS = TEST_EXTENSIONS = .scm SCM_LOG_DRIVER = \ diff --git a/gib-gab-gob/actors.scm b/gib-gab-gob/actors.scm index 4be0da7..df4d475 100644 --- a/gib-gab-gob/actors.scm +++ b/gib-gab-gob/actors.scm @@ -1,7 +1,6 @@ (define-module (gib-gab-gob actors) #:use-module (gib-gab-gob rps) #:use-module (gib-gab-gob lib) ;; to go into goblins eventually! - #:use-module (gib-gab-gob utils) #:use-module (goblins) #:use-module (goblins vat) #:use-module (goblins actor-lib methods) diff --git a/gib-gab-gob/utils.scm b/gib-gab-gob/utils.scm deleted file mode 100644 index 6b13752..0000000 --- a/gib-gab-gob/utils.scm +++ /dev/null @@ -1,7 +0,0 @@ -(define-module (gib-gab-gob utils) - #:export (prompt)) - -;; Prompt for something in the console and convert it to a string. -(define (prompt text) - (format #t text) - (read)) diff --git a/hall.scm b/hall.scm index a74fa76..d6ea98f 100644 --- a/hall.scm +++ b/hall.scm @@ -50,4 +50,6 @@ (text-file "install-sh") (text-file "mdate-sh"))) (scheme-file "hall") - (text-file ".gitignore"))))) + (text-file ".gitignore") + (autoconf-file "configure") + (automake-file "Makefile")))))