forked from Mirrorlandia_minetest/mod-sneeker
14 lines
269 B
Bash
14 lines
269 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
DOCS="$(dirname $(readlink -f $0))"
|
||
|
ROOT="$(dirname ${DOCS})"
|
||
|
CONFIG="${DOCS}/config.ld"
|
||
|
|
||
|
cd "${ROOT}"
|
||
|
|
||
|
# Clean old files
|
||
|
rm -rf "${DOCS}/api.html" "${DOCS}/scripts" "${DOCS}/modules"
|
||
|
|
||
|
# Create new files
|
||
|
ldoc -c "${CONFIG}" -d "${DOCS}" -o "api" "${ROOT}"
|