use config.def.h -> config.h and document it in the manpage; v1.0
This commit is contained in:
parent
1ae3fe4277
commit
dc9e2af9f5
7 changed files with 13 additions and 8 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,2 +1,3 @@
|
|||
*.o
|
||||
ryudo
|
||||
config.h
|
||||
|
|
4
build.sh
4
build.sh
|
@ -1,5 +1,9 @@
|
|||
#!/bin/sh
|
||||
|
||||
if [! -e config.h ]; then
|
||||
cp config.def.h config.h
|
||||
fi
|
||||
|
||||
mk clean
|
||||
mk o.rio
|
||||
|
||||
|
|
2
main.c
2
main.c
|
@ -21,7 +21,7 @@
|
|||
#include "patchlevel.h"
|
||||
|
||||
char* version[] = {
|
||||
"ryudo version 0.6\nCopyright (c) 1994-1996 David Hogan,\n(c) 2004 Russ "
|
||||
"ryudo version 1.0\nCopyright (c) 1994-1996 David Hogan,\n(c) 2004 Russ "
|
||||
"Cox,\n(c) 2019-2021 Derek Stevens",
|
||||
0};
|
||||
|
||||
|
|
4
ryudo.1
4
ryudo.1
|
@ -1,4 +1,4 @@
|
|||
.TH "RYUDO" "1" "June 2021" "" ""
|
||||
.TH "RYUDO" "1" "September 2021" "" ""
|
||||
.
|
||||
.SH "NAME"
|
||||
\fBryudo\fR \- The floatiling window manager that flows
|
||||
|
@ -28,7 +28,7 @@ The \fB\-version\fR option prints the current version to \fBstderr\fR and then e
|
|||
If either \fBexit\fR or \fBrestart\fR is given, the appropriate message is sent to an already\-running \fBryudo\fR instance to execute the named action\.
|
||||
.
|
||||
.SH "CONFIGURATION"
|
||||
Many configuration options have been enabled as compile\-time options configured in the \fBconfig\.h\fR configuration file\. The \fBconfig\.def\.h\fR file shipped with the source code documents all of the options in the comments\. After changing the configuration, it is necessary to run the \fBbuild\.sh\fR and/or \fBinstall\.sh\fR script again and restart the program\.
|
||||
Many configuration options have been enabled as compile\-time options configured in the \fBconfig\.h\fR configuration file\. The \fBconfig\.def\.h\fR file shipped with the source code documents all of the options and contains what I hope are sane defaults\. If \fBconfig\.h\fR does not exist in the source directory, it will be copied from \fBconfig\.def\.h\fR on build\. After changing the configuration, it is necessary to run the \fBbuild\.sh\fR and/or \fBinstall\.sh\fR script again and restart the program\.
|
||||
.
|
||||
.SH "BUILDING AND INSTALLATION"
|
||||
Run the provided \fBbuild\.sh\fR and \fBinstall\.sh\fR scripts to build and install \fBryudo\fR\. If run as root, they will install the program and manual pages to the PLAN9 installation path\. If run as a regular user, they will install the program to \fB~/bin/9/\fR and not install the manual pages\.
|
||||
|
|
|
@ -97,7 +97,7 @@
|
|||
|
||||
<h2 id="CONFIGURATION">CONFIGURATION</h2>
|
||||
|
||||
<p>Many configuration options have been enabled as compile-time options configured in the <code>config.h</code> configuration file. The <code>config.def.h</code> file shipped with the source code documents all of the options in the comments. After changing the configuration, it is necessary to run the <code>build.sh</code> and/or <code>install.sh</code> script again and restart the program.</p>
|
||||
<p>Many configuration options have been enabled as compile-time options configured in the <code>config.h</code> configuration file. The <code>config.def.h</code> file shipped with the source code documents all of the options and contains what I hope are sane defaults. If <code>config.h</code> does not exist in the source directory, it will be copied from <code>config.def.h</code> on build. After changing the configuration, it is necessary to run the <code>build.sh</code> and/or <code>install.sh</code> script again and restart the program.</p>
|
||||
|
||||
<h2 id="BUILDING-AND-INSTALLATION">BUILDING AND INSTALLATION</h2>
|
||||
|
||||
|
@ -171,8 +171,8 @@
|
|||
<h2 id="AUTHORS">AUTHORS</h2>
|
||||
|
||||
<ul>
|
||||
<li>Derek Stevens <a href="mailto:nilix@nilfm.cc" data-bare-link="true">nilix@nilfm.cc</a></li>
|
||||
<li>Russ Cox <a href="mailto:rsc@swtch.com" data-bare-link="true">rsc@swtch.com</a></li>
|
||||
<li>Derek Stevens <a href="mailto:nilix@nilfm.cc" data-bare-link="true">nilix@nilfm.cc</a></li>
|
||||
<li>Russ Cox <a href="mailto:rsc@swtch.com" data-bare-link="true">rsc@swtch.com</a></li>
|
||||
<li>David Hogan, RIP</li>
|
||||
</ul>
|
||||
|
||||
|
@ -184,7 +184,7 @@
|
|||
|
||||
<ol class='man-decor man-foot man foot'>
|
||||
<li class='tl'></li>
|
||||
<li class='tc'>June 2021</li>
|
||||
<li class='tc'>September 2021</li>
|
||||
<li class='tr'>ryudo(1)</li>
|
||||
</ol>
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@ If either `exit` or `restart` is given, the appropriate message is sent to an al
|
|||
|
||||
## CONFIGURATION
|
||||
|
||||
Many configuration options have been enabled as compile-time options configured in the `config.h` configuration file. The `config.def.h` file shipped with the source code documents all of the options in the comments. After changing the configuration, it is necessary to run the `build.sh` and/or `install.sh` script again and restart the program.
|
||||
Many configuration options have been enabled as compile-time options configured in the `config.h` configuration file. The `config.def.h` file shipped with the source code documents all of the options and contains what I hope are sane defaults. If `config.h` does not exist in the source directory, it will be copied from `config.def.h` on build. After changing the configuration, it is necessary to run the `build.sh` and/or `install.sh` script again and restart the program.
|
||||
|
||||
## BUILDING AND INSTALLATION
|
||||
|
||||
|
|
Loading…
Reference in a new issue