mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-25 00:38:53 +08:00
17 lines
462 B
Bash
17 lines
462 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
# Usage: Doxyfile.user lexicon_filter
|
||
|
DOXYFILE=$1
|
||
|
LEXICON_FILTER=$2
|
||
|
|
||
|
(cat "${DOXYFILE}" ;\
|
||
|
echo INPUT_FILTER="${LEXICON_FILTER}"; \
|
||
|
echo PROJECT_NUMBER=${FISH_BUILD_VERSION} \
|
||
|
| /usr/bin/env sed "s/-.*//") \
|
||
|
| doxygen - && touch user_doc
|
||
|
|
||
|
(cd ./user_doc/html/ && \
|
||
|
rm -f bc_s.png bdwn.png closed.png doc.png folder*.png ftv2*.png \
|
||
|
nav*.png open.png splitbar.png sync_*.png tab*.* doxygen.* \
|
||
|
dynsections.js jquery.js pages.html)
|