6 lines
155 B
Bash
6 lines
155 B
Bash
|
#!/bin/sh
|
||
|
# Script generate developer documentation for progect.
|
||
|
# Output directory doc/
|
||
|
# Run from root directory of project
|
||
|
doxygen doc/doxygen/Doxyfile
|