Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[doc] Avoid noise on doc build, remove built files on cleanup
Doxygen outputs a lot of progress info to stdout - which easily
mages genuine build problems hard to spot.

Redirect progress info to a file to improve build log readability.

Remove generated html output and log files on clean-local target.

Signed-off-by: Simo Piiroinen <simo.piiroinen@jollamobile.com>
  • Loading branch information
spiiroin committed Jan 21, 2020
1 parent 40195cf commit c36a4d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/Makefile.am
Expand Up @@ -3,8 +3,8 @@ all: doc

doc:
rm -rf html/
doxygen usb_moded-doxygen.conf
doxygen usb_moded-doxygen.conf 1>doxygen.out # stdout=noise

clean-local:
-rm -rf html/
-rm -rf html/ doxygen.out

0 comments on commit c36a4d1

Please sign in to comment.