added config to docs section

This commit is contained in:
Chad Nelson 2023-11-28 17:15:28 -07:00
parent acb7511f96
commit cc5e475c91
5 changed files with 7 additions and 7 deletions

View file

@ -32,8 +32,7 @@ SUFFIXES = .scm .go
.scm.go:
$(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_TARGET) $(GUILE_WARNINGS) -o "$@" "$<"
SOURCES = msg.scm \
msg/config.scm \
SOURCES = msg/config.scm \
msg/machine.scm \
msg/hconfig.scm \
msg/shell.scm \
@ -61,6 +60,7 @@ EXTRA_DIST = README.org \
README \
HACKING \
COPYING \
doc/config.scm \
NEWS \
AUTHORS \
ChangeLog \

View file

@ -5,7 +5,7 @@ AC_SUBST(HVERSION, "\"0.1\"")
AC_SUBST(AUTHOR, "\"Chad Nelson\"")
AC_SUBST(COPYRIGHT, "'(2023)")
AC_SUBST(LICENSE, gpl3+)
AC_CONFIG_SRCDIR(msg.scm)
AC_CONFIG_SRCDIR(scripts)
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([1.12 gnu silent-rules subdir-objects color-tests parallel-tests -Woverride -Wno-portability])
AM_SILENT_RULES([yes])

1
doc/config.scm Normal file
View file

@ -0,0 +1 @@
((cpu . 4) (mem . 4))

View file

@ -13,22 +13,21 @@
(skip ())
(features ((guix #f) (native-language-support #f) (licensing #f)))
(files (libraries
((scheme-file "msg")
(directory
((directory
"msg"
((scheme-file "config")
(scheme-file "machine")
(scheme-file "hconfig")
(scheme-file "shell")
(scheme-file "helpers")))))
(tests ((directory "tests" ())))
(tests ())
(programs ((directory "scripts" ((in-file "msg")))))
(documentation
((org-file "README")
(symlink "README" "README.org")
(text-file "HACKING")
(text-file "COPYING")
(directory "doc" ((texi-file "msg")))
(directory "doc" ((texi-file "msg") (scheme-file "config")))
(text-file "NEWS")
(text-file "AUTHORS")
(text-file "ChangeLog")))

View file