Clean up unused utils module

This commit is contained in:
Vivianne 2023-02-18 13:56:12 -08:00
parent 1660010d1f
commit 461e88dd92
4 changed files with 5 additions and 12 deletions

View File

@ -33,12 +33,11 @@ SUFFIXES = .scm .go
.scm.go: .scm.go:
$(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_WARNINGS) -o "$@" "$<" $(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_WARNINGS) -o "$@" "$<"
SOURCES = gib-gab-gob/utils.scm \ SOURCES = gib-gab-gob/rps.scm \
gib-gab-gob/rps.scm \
gib-gab-gob/actors.scm \ gib-gab-gob/actors.scm \
gib-gab-gob/lib.scm gib-gab-gob/lib.scm
TESTS = TESTS =
TEST_EXTENSIONS = .scm TEST_EXTENSIONS = .scm
SCM_LOG_DRIVER = \ SCM_LOG_DRIVER = \

View File

@ -1,7 +1,6 @@
(define-module (gib-gab-gob actors) (define-module (gib-gab-gob actors)
#:use-module (gib-gab-gob rps) #:use-module (gib-gab-gob rps)
#:use-module (gib-gab-gob lib) ;; to go into goblins eventually! #:use-module (gib-gab-gob lib) ;; to go into goblins eventually!
#:use-module (gib-gab-gob utils)
#:use-module (goblins) #:use-module (goblins)
#:use-module (goblins vat) #:use-module (goblins vat)
#:use-module (goblins actor-lib methods) #:use-module (goblins actor-lib methods)

View File

@ -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))

View File

@ -50,4 +50,6 @@
(text-file "install-sh") (text-file "install-sh")
(text-file "mdate-sh"))) (text-file "mdate-sh")))
(scheme-file "hall") (scheme-file "hall")
(text-file ".gitignore"))))) (text-file ".gitignore")
(autoconf-file "configure")
(automake-file "Makefile")))))