* src/ltlvisit/tostring.hh (to_string): Add doxygen comments. * src/ltlast/multop.hh (multop::paircmp): Add doxygen comments. * src/ltlvisit/postfix.hh: Typo.
20 lines
350 B
Makefile
20 lines
350 B
Makefile
DOXYGEN = doxygen
|
|
|
|
.PHONY: doc spot
|
|
|
|
all-local: $(srcdir)/stamp
|
|
|
|
doc:
|
|
rm -f $(srcdir)/stamp
|
|
$(MAKE) $(srcdir)/stamp
|
|
|
|
$(srcdir)/stamp: $(srcdir)/Doxyfile.in $(top_srcdir)/configure.ac
|
|
$(MAKE) Doxyfile
|
|
rm -rf spot.html spot.latex
|
|
$(DOXYGEN)
|
|
touch $@
|
|
|
|
spot.html: $(srcdir)/stamp
|
|
spot.latex: $(srcdir)/stamp
|
|
|
|
EXTRA_DIST = $(srcdir)/stamp spot.html
|