added config to docs section
This commit is contained in:
parent
acb7511f96
commit
cc5e475c91
5 changed files with 7 additions and 7 deletions
|
@ -32,8 +32,7 @@ SUFFIXES = .scm .go
|
||||||
.scm.go:
|
.scm.go:
|
||||||
$(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_TARGET) $(GUILE_WARNINGS) -o "$@" "$<"
|
$(AM_V_GEN)$(top_builddir)/pre-inst-env $(GUILE_TOOLS) compile $(GUILE_TARGET) $(GUILE_WARNINGS) -o "$@" "$<"
|
||||||
|
|
||||||
SOURCES = msg.scm \
|
SOURCES = msg/config.scm \
|
||||||
msg/config.scm \
|
|
||||||
msg/machine.scm \
|
msg/machine.scm \
|
||||||
msg/hconfig.scm \
|
msg/hconfig.scm \
|
||||||
msg/shell.scm \
|
msg/shell.scm \
|
||||||
|
@ -61,6 +60,7 @@ EXTRA_DIST = README.org \
|
||||||
README \
|
README \
|
||||||
HACKING \
|
HACKING \
|
||||||
COPYING \
|
COPYING \
|
||||||
|
doc/config.scm \
|
||||||
NEWS \
|
NEWS \
|
||||||
AUTHORS \
|
AUTHORS \
|
||||||
ChangeLog \
|
ChangeLog \
|
||||||
|
|
|
@ -5,7 +5,7 @@ AC_SUBST(HVERSION, "\"0.1\"")
|
||||||
AC_SUBST(AUTHOR, "\"Chad Nelson\"")
|
AC_SUBST(AUTHOR, "\"Chad Nelson\"")
|
||||||
AC_SUBST(COPYRIGHT, "'(2023)")
|
AC_SUBST(COPYRIGHT, "'(2023)")
|
||||||
AC_SUBST(LICENSE, gpl3+)
|
AC_SUBST(LICENSE, gpl3+)
|
||||||
AC_CONFIG_SRCDIR(msg.scm)
|
AC_CONFIG_SRCDIR(scripts)
|
||||||
AC_CONFIG_AUX_DIR([build-aux])
|
AC_CONFIG_AUX_DIR([build-aux])
|
||||||
AM_INIT_AUTOMAKE([1.12 gnu silent-rules subdir-objects color-tests parallel-tests -Woverride -Wno-portability])
|
AM_INIT_AUTOMAKE([1.12 gnu silent-rules subdir-objects color-tests parallel-tests -Woverride -Wno-portability])
|
||||||
AM_SILENT_RULES([yes])
|
AM_SILENT_RULES([yes])
|
||||||
|
|
1
doc/config.scm
Normal file
1
doc/config.scm
Normal file
|
@ -0,0 +1 @@
|
||||||
|
((cpu . 4) (mem . 4))
|
7
hall.scm
7
hall.scm
|
@ -13,22 +13,21 @@
|
||||||
(skip ())
|
(skip ())
|
||||||
(features ((guix #f) (native-language-support #f) (licensing #f)))
|
(features ((guix #f) (native-language-support #f) (licensing #f)))
|
||||||
(files (libraries
|
(files (libraries
|
||||||
((scheme-file "msg")
|
((directory
|
||||||
(directory
|
|
||||||
"msg"
|
"msg"
|
||||||
((scheme-file "config")
|
((scheme-file "config")
|
||||||
(scheme-file "machine")
|
(scheme-file "machine")
|
||||||
(scheme-file "hconfig")
|
(scheme-file "hconfig")
|
||||||
(scheme-file "shell")
|
(scheme-file "shell")
|
||||||
(scheme-file "helpers")))))
|
(scheme-file "helpers")))))
|
||||||
(tests ((directory "tests" ())))
|
(tests ())
|
||||||
(programs ((directory "scripts" ((in-file "msg")))))
|
(programs ((directory "scripts" ((in-file "msg")))))
|
||||||
(documentation
|
(documentation
|
||||||
((org-file "README")
|
((org-file "README")
|
||||||
(symlink "README" "README.org")
|
(symlink "README" "README.org")
|
||||||
(text-file "HACKING")
|
(text-file "HACKING")
|
||||||
(text-file "COPYING")
|
(text-file "COPYING")
|
||||||
(directory "doc" ((texi-file "msg")))
|
(directory "doc" ((texi-file "msg") (scheme-file "config")))
|
||||||
(text-file "NEWS")
|
(text-file "NEWS")
|
||||||
(text-file "AUTHORS")
|
(text-file "AUTHORS")
|
||||||
(text-file "ChangeLog")))
|
(text-file "ChangeLog")))
|
||||||
|
|
0
msg.scm
0
msg.scm
Loading…
Add table
Reference in a new issue