save
This commit is contained in:
8
build-aux/TODO
Normal file
8
build-aux/TODO
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
GCK yait - TODO
|
||||||
|
|
||||||
|
Todo:
|
||||||
|
|
||||||
|
* Use the /*: something()@does something :*/ syntax for detecting entries
|
||||||
|
* Output html
|
||||||
|
|
||||||
|
end of file TODO
|
||||||
47
build-aux/gendoc.sh
Executable file
47
build-aux/gendoc.sh
Executable file
@@ -0,0 +1,47 @@
|
|||||||
|
#!/bin/sh
|
||||||
|
|
||||||
|
# Usage: $0 [options]...
|
||||||
|
|
||||||
|
prog_name=$(basename $0)
|
||||||
|
tool_version="beta"
|
||||||
|
year=2025
|
||||||
|
|
||||||
|
fatal() {
|
||||||
|
echo "fatal: $*" >&2
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
|
||||||
|
run() {
|
||||||
|
"$@" || fatal "could not run: $*"
|
||||||
|
}
|
||||||
|
|
||||||
|
print_help() {
|
||||||
|
cat <<EOF
|
||||||
|
Usage: $prog_name [options]...
|
||||||
|
|
||||||
|
--help print this help and exit.
|
||||||
|
--version print version information.
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
print_version() {
|
||||||
|
cat <<EOF
|
||||||
|
$prog_name $tool_version $(git rev-list --count --all 2>/dev/null || echo 0)
|
||||||
|
Copyright (C) $year vx-clutch.
|
||||||
|
This is free software: you are free to change and redistribute it.
|
||||||
|
There is NO WARRANTY, to the extent permitted by law.
|
||||||
|
EOF
|
||||||
|
}
|
||||||
|
|
||||||
|
header=$(cat <<EOF
|
||||||
|
|
||||||
|
EOF)
|
||||||
|
|
||||||
|
while [ $# -gt 0 ]; do
|
||||||
|
case "$1" in
|
||||||
|
--help) print_help; exit 0 ;;
|
||||||
|
--version) print_version; exit 0 ;;
|
||||||
|
*) fatal "Not implemented yet" ;;
|
||||||
|
esac
|
||||||
|
shift
|
||||||
|
done
|
||||||
5
build-aux/header.html
Normal file
5
build-aux/header.html
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<title>DOCUMENT</title>
|
||||||
|
</head>
|
||||||
Reference in New Issue
Block a user