18 lines
290 B
Makefile
18 lines
290 B
Makefile
|
all: html
|
||
|
|
||
|
html: logs
|
||
|
# run the html output
|
||
|
ALIAS_INCLUDE_FILE=template/other_html_aliases.txt \
|
||
|
ENV_WARN_LOG=logs/html_doxy_warn.log \
|
||
|
ENV_GEN_HTML=YES \
|
||
|
ENV_GEN_LATEX=NO \
|
||
|
doxygen config.ldd > logs/html_doxy.log
|
||
|
|
||
|
logs:
|
||
|
mkdir -p logs
|
||
|
|
||
|
clean:
|
||
|
rm -rf logs
|
||
|
rm -rf html
|
||
|
rm -rf latex
|