8 lines
127 B
Makefile
8 lines
127 B
Makefile
|
all: htmldoc pdfdoc
|
||
|
|
||
|
htmldoc:
|
||
|
doxygen Doxyfile
|
||
|
|
||
|
pdfdoc: htmldoc
|
||
|
cd latex; make refman.pdf && mv refman.pdf ../uip-refman.pdf
|